.body {
    background-color: #ECD6A7;
}

.bigt {
    text-align: center;
    font-size: 30px;
}

.center {
    text-align: center;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spacer {
    margin-top: 100px; 
}

.button1 {
    background-color: white;
    border: 2px solid green;
    font-size: 20px;
    border-radius: 8px;
    padding: 15px 32px;
    width: 40%;
    transition-duration: 0.4s;
}

.button1:hover{
    background-color: green;
    color: white;
}

.button2 {
    background-color: white;
    border: 2px solid #5080CE;
    font-size: 20px;
    border-radius: 8px;
    padding: 15px 32px;
    width: 40%;
    transition-duration: 0.4s;
}

.button2:hover{
    background-color: #5080CE;
    color: white;
}
