*{
    font-family: 'Funnel Display', Arial, monospace;
}
html {
  scroll-behavior: smooth;
}
body{
    background-color: #070f0f;
}
main{
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    padding: 1rem 3rem;
}
main header{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    color: beige;
    padding-bottom: 1rem;
}
main header h1{
    font-size: 24px;
    font-weight: bolder;
    color: #daf7e9;
}
main header a{
    text-decoration: none;
    color: #daf7e9;
}
.account-section{
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-self: center;
    gap: 2rem;
}
.login-section{
    background-color: #daf7e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    gap: 0.5rem;
    padding: 7rem 0rem;
}
.login-section h3{
    font-size: 32px;
    font-weight: bolder;
    color: #070f0f;
}
.login-section p{
    color: #408A71;
    margin-bottom: 1rem;
}
.login-section input{
    width: 40%;
    padding: 0.7rem;
    border-radius: 15px;
    border-style: none;
}
.login-section button{
    transition: all 0.2s ease;
    margin-top: 1rem;
    width: 40%;
    padding: 0.7rem 0rem;
    border-radius: 15px;
    background-color: #408A71;
    border-style: none;
    color: #daf7e9;
    font-size: 16px;
    font-weight: bold;
}
.login-section button:hover{
    transform: scale(1.02);
    cursor: pointer;
}
.login-section a{
    color: #070f0f;
}
.login-section a:hover{
    cursor: pointer;
}
.new-user{
    background-color: #408A71;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.new-user h3{
    font-size: 32px;
    font-weight: bolder;
    color: #070f0f;
    margin-bottom: 1rem;
}
.new-user p{
    width: 70%;
    text-align: center;
    color: #daf7e9;
    margin-bottom: 1rem;
}
.new-user button{
    transition: all 0.2s ease;
    width: 60%;
    padding: 0.7rem;
    border-radius: 15px;
    border-style: none;
    background-color: #daf7e9;
    color:#070f0f;
    font-size: 16px;
    font-weight: bold;
}
.new-user button:hover{
    transform: scale(1.02);
    cursor: pointer;
}
footer{
    color: #daf7e9;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 1rem;
}