html,body{
    font-family: 'Jost', sans-serif;
    color: white;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,94,121,0.9777397775516457) 28%, rgba(0,212,255,1) 100%);
    height: 97vh;
    margin: 0;
}
.box{
    height: 15rem;
    width: 20rem;
    background-color: red;
    margin: 1rem;
    border : 1px  transparent;
    border-radius: 1rem;
}
.container{
    display: flex;
    
    flex-direction: column;
    width: 100%;
    margin: 2rem;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}
.row{
    display: flex;
    flex-wrap: wrap; /* Allow boxes to wrap onto new lines */
    justify-content: center; /* Center the boxes within the row */


}
h1{
    text-align: center;
    font-size: 2.5rem;
}
#reset{
    height: 2.5rem;
    width: 6rem;

}
p{
    text-align: center;
    font-size: 1.5rem;
}
.button-div{
    text-align: center;
}
@media (max-width: 768px) {
    .box {
        height: 10rem;
        width: 15rem;
    }

    .row {
        flex-direction: column;
    }
}