* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('/Images/homeBG_test.gif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

#textBox {
    position: absolute; 
    top: 2.5%; 
    left: 50%;
    transform: translateX(-50%); 
    color: white;
    font-size: 2rem;
    text-align: center;
    -webkit-text-fill-color: rgb(0, 0, 0); 
    -webkit-text-stroke: 1px rgb(255, 0, 0);
}

#boxContainer {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px; 
}

.clickableButton {
    width: 200px;
    height: 100px;
    border: 2px solid black;
    font-size: 3rem;
    cursor: pointer;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

#yesButton {
    background-color: #28a745;
    color: white;
}

#noButton {
    background-color: #dc3545; 
    color: white;
}

.clickableButton:hover {
    opacity: 0.8;
}

.clickableButton:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}