/* General Reset to remove margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #222222; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.homeButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #707070;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    top: 10px;
    left: 47%;
    position: fixed;

    box-shadow: 0 5px 0 #4f4f4f;
    transition: all 0.1s ease;
}

.homeButton:active {
    box-shadow: 0 2px 0 #4f4f4f;
    transform: translateY(3px);
}
/* Container for buttons */
.button-container {
    display: flex;              
    justify-content: center;    
    gap: 5px;                  
}

/* Styling for image buttons */
.image-button {
    display: inline-block;
    width: 300px;               
    height: 300px;              
    border: black;               
    background: none;           
    cursor: pointer;           
}

/* Style the images inside the buttons */
.image-button img {
    width: 100%;                
    height: 100%;               
    object-fit: cover;          
}

/* Optional: Add hover effect */
.image-button:hover img {
    opacity: 1;               
}

.hover-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-button:hover .hover-text {
    opacity: 1;
}

/* Responsive: Stack buttons on smaller screens */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column; 
        align-items: center;    
    }

    .image-button {
        width: 80%;             
        height: auto;           
        margin: 10px auto;      
    }
}
