* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #74B3CE;
    color: white
}

.headcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vw;
}

.head {
    background-color: #172A3A;
    padding: 20px;
    width: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

h1 {
    text-align: center;
    font-family: "Alfa Slab One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4vw;
}

.mastercontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25vh;
    margin-bottom: 10vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25vw;
    width: 42vw;
    flex-wrap: wrap;

}

.boxes {
    height: 10vw;
    width: 10vw;
    border-radius: 1.042vw;
    border: none;
    background-color: #315b61;
    color: white;
    font-size: 5vw;

}

.resetbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vw;
}

#reset {
    padding: 20px;
    border: none;
    font-size: 2.5vw;
    border-radius: 10px;
    color: white;
    background-color: rgb(29, 28, 28);
}

#new {
    padding: 20px;
    border: none;
    font-size: 2.5vw;
    border-radius: 10px;
    color: white;
    background-color: rgb(29, 28, 28);
}

.newbtn {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vw;
    margin-top: 5vw;
}

.para{
    font-size: 5vw;
    font-family: serif;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10vw 0;
}