body, html {
    height: 100%;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background: #218380; /* Base paper-like color */
    position: relative;
    overflow: hidden;
}

.svg-wrapper {
    position: relative;
    height: 100vh; /* viewport height */
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* This ensures the SVG stays behind other content */
}

body::before {
    top: 10%;
    left: 15%;
    height: 1px; /* Pencil streak thickness */
    width: 50%;
}

body::after {
    top: 25%;
    left: 5%;
    height: 2px;
    width: 70%;
}
.rounded-container {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: calc(50% - 270px);
}
@media(max-width: 560px ){
    .rounded-container{
        margin-left: 10px;
        margin-right: 10px;
    }
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white !important;
    top: 25%; /* Adjust as needed to position the container in the "upper middle" part of the viewport */
}

.logo img {
    width: 200px; /* Adjust as needed */
}

.buttons {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #bbb;
}