* {
    margin: 0;
    padding: 0;
}

.box {
    background-color: aliceblue;
    height: 100vh;
    display: flex;
    justify-content:space-evenly;
    align-items: center;

}

.button {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    background-color: white;
}

.button__one {
    color: red;
    border:solid red;
}

.button__two {
    color: green;
    border: solid green;
}

.button__three {
    color: blue;
    border: solid blue;
}
.button__four {
    color: orange;
    border: solid orange;
    
}
