@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Overpass:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');



body{
    font-family: 'Nunito', sans-serif;
    background-color: #222221;
    color: #fff;

    box-sizing: border-box;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;

    
}

::-webkit-scrollbar {
    display: none;
}

h1{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 90vw;
}

h2{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;

    max-width: 80vw;
}

p{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    max-width: 80vw;
}

form {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}

input[type="text"]{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    border: 1px solid #fff;
    background-color: #222221;
    color: #fff;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    max-width: 70vw;
}

input[type="number"]{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    border: 1px solid #fff;
    background-color: #222221;
    color: #fff;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    max-width: 70vw;

}



a{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 0.5rem;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="submit"]{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    border: 1px solid #fff;
    background-color: #222221;
    color: #fff;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.model{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    

}
.content {
    background-color: #222221;
    padding: 2rem 20px; /* Combined padding properties */
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    margin: 0 auto;
    scrollbar-width: none;
    position: relative;
    z-index: 1001;
    height: fit-content;
    


}

.content h1{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 80vw;
}
.footer{
    background-color: #222221;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
}

@media (max-width: 600px) {
    .model {
        width: 100%;
        height: 300px; 
    }
}

input[type="submit"]:hover{
    background-color: #fff;
    color: #222221;
}

input[type="submit"]:active{
    background-color: #fff;
    color: #222221;
}

.form-group{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    max-width: 70vw;
}

.form-group input{
    margin-left: 3rem;
}

