body {
    margin: 0px;
    font-family: Roboto;
    background-image: linear-gradient(90deg, rgb(43, 41, 63) 0.00%, rgb(27, 25, 38) 100.00%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: space-evenly;
}

.button {
    cursor: pointer;
    border: #fbc14b solid 5px;
    width: 50%;
    display: flex;
    color: #fbc14b;
    justify-content: center;
    border-radius: 20px;
    font-size: 100px;
    margin:20px;
}

.button:hover{
    background-color: #fbc14b;
    color: rgb(43, 41, 63);
}