.box-3 {
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.box-2 {
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-evenly;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45vw;
    height: 40vh;
    background-color: burlywood;
    border-radius: 10%;
    margin-top: 7vh;
}

p {
    font-size: 2.5vw;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95vh;
    background-color: rgb(180, 130, 80);
    width: 100%;
    margin: 0vw;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}