:root{
    --shadow-color: #333333;
    --text-color: wheat;
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}
html{
    font-size: 62.5%;
}
body{
    background-color: tomato;
}
h1{
    display: flex;
    justify-content: center;
    margin-top: 7rem;
    font-size: 5rem;
    color: var(--text-color);
    text-shadow: .3rem .3rem .2rem var(--shadow-color);
}
#div1{
    display: flex;
    justify-content: center;
    width: 40rem;
    flex-direction: column;
    margin: auto;
}
form{
    display: flex;
    justify-content: center;
    flex-direction: column;

}
form > label{
    color: var(--text-color);
    padding: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 2.5rem;
    text-shadow: .2rem .2rem .1rem var(--shadow-color);
}
form > input{
    padding: 1rem;
    margin: 0 1rem .5rem 1rem;
    border: .1rem solid var(--text-color);
    background-color: var(--text-color);
    font-weight: bold;
    border-radius: .4rem;
    font-size: 2rem;
    box-shadow: .2rem .2rem .1rem var(--shadow-color);
}
#card{
    display: flex;
    flex-direction: column;
    width: 40rem;
    margin: auto;
}
.card-1{
    background-color: var(--text-color);
    padding: 1rem;
    margin: .5rem 1rem;            
    border-radius: 4px;
    font-size: 2rem;
    box-shadow: .2rem .2rem .1rem var(--shadow-color);
}
.card-2{
    background-color: var(--text-color);
    padding: 1rem;
    margin: .5rem 1rem;            
    border-radius: .4rem;
    font-size: 2rem;
    box-shadow: .2rem .2rem .1rem var(--shadow-color);
}
.card-3{
    background-color: var(--text-color);
    padding: 1rem;
    margin: .5rem 1rem;
    border-radius: .4rem;
    font-size: 2rem;
    box-shadow: .2rem .2rem .1rem var(--shadow-color);
}
#div2{
    display: flex;
    justify-content: center;
}
#div2 > input{
    background-color: var(--text-color);
    padding: .5rem 1rem;
    margin: 1rem 1rem .5rem 1rem;
    border-radius: .4rem;
    font-size: 2rem;
    border: .1rem solid var(--text-color);
    font-weight: bold;
    box-shadow: .2rem .2rem .2rem var(--shadow-color);
    cursor: pointer;
    transition: all 0.1s ease-in;
}
#div2 > input:hover{
    transform: scale(0.95);
    box-shadow: .1rem .1rem .2rem var(--shadow-color);
}
h4{
    padding-bottom: .5rem;
}

@media screen and (max-width:400px){
    html{
        font-size: 45%;
    }
}