:root{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: rgb(92, 157, 211);
}
*{
    margin: 0;
    padding: 0;
}
#card{
    background-color: white;
    width: 12vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    gap: 1rem;
    box-shadow: 3px 2px rgba(0, 0, 0, 0.2);
}
.card-section{
    background-color: rgb(43, 130, 211);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20vh;
    width: 10vw;
    padding: 4px;
    margin: 8px;
    border-radius: 1rem;
    box-shadow: 3px 2px rgba(0, 0, 0, 0.2);
}
.card-title{
    gap: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    padding: 4px;
}

.card-title p{
    color: gray;
}

