body,html {
    margin: 0;
    padding: 0;
}

.highlight{
    color: #F38484;
}

body{
    background-color: rgb(247, 243, 232);
    font-family: Outfit;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, p {
    text-align: center;

}

p, label{
    font-weight: 300;
    font-size: 15pt;
}

.option {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#body {
    width: 20rem;
    border-radius: 8px;
}

#bcontainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30rem;
    height: 90%;
    background-color: white;
    border-radius: 25px;
    box-shadow: 5px 4px 20px rgba(0, 0, 0, 0.1);
}

#container {
    text-align: center;
}

#icontainer{
    width: 18rem;
    height: auto;
}

button {
    background-color: #F38484;
    color: white;
    border: 1px solid black;
    font-size: 18px;
    /* margin: 20px; */
    font-family: Outfit;
    display: inline-block;
    margin-left: 0.5rem;
    width: 10rem;
    border-radius: 8px;
}

/* #second {
    display: inline-block;
} */
#body {
    font-size: 18px;
    font-family: Outfit;
}


button:hover {
    background-color: black;
    color: white;
    transition: 1s;
}

button:active {
    box-shadow: 0 3px #666;
    transform: translateY(4px);
}