body {
    text-align: center;
    margin: 0;
    font-family: 'Italianno', cursive;
    background: url('images/surf_pov.gif') center center no-repeat fixed; /* Set beach wave animation as the background */
    background-size: cover; /* Ensure the background covers the entire screen */
    /* overflow: hidden; Hide overflowing content for the animation */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    height: 100%; /* Set the body height to 100% of the viewport height */
    font-size: 32px;
    margin-bottom: 50px;
}

body .inner-container {
    max-width: 800px; /* Set a maximum width for the inner container */
    width: 100%; /* Make the inner container full width */
    margin: 50px auto; 
    background-color: ivory; /* Set the inner background to ivory */
    padding: 40px; /* Add padding for the black trim */
    border: 5px solid black; /* Add a thin black border */
    border-radius: 100px; /* Rounded corners for a modern look */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    height: 900px;
    

}

.header {
    background-image: url('images/header_ivory.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
}



h1 {
    color: #333;
    font-size: 24px;
}

.center-container {
    display: flex;
    justify-content: center;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.custom-button {
    display: inline-block;
    background-size: cover;
    width: 100%;
    height: 200px;
    color: white;
    text-align: center;
    line-height: 200px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 2px solid #f8f8f8;
    border-radius: 50px;
    overflow: hidden; /* Hide the box shadow overflow */
}

.custom-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-button-2 {
    display: inline-block;
    background-size: cover;
    width: 100%;
    height: 50px;
    color: black; /* Change text color to black */
    text-align: center;
    text-decoration: none;
    line-height: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 2px solid #f8f8f8;
    border-radius: 50px;
}

.custom-button-2:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
}

#button-1 {
    background-image: url('images/night_before.jpg');
}

#button-2 {
    background-image: url('images/day_of.jpg');
}

#button-3 {
    background-image: url('images/morning_after.jpg');
}

#button-4 {
    background-image: url('images/travel.jpg');
}

#button-5 {
    background-color: ivory;
}

#button-6 {
    background-color: ivory;
}


@font-face {
    font-family: 'Italianno';
    src: url('fonts/italianno.woff2') format('woff2'),
         url('fonts/italianno.woff') format('woff');
    font-weight: 900; /* Use the appropriate font weight */
    font-style: oblique;
}

/* Media Query for smaller screens */
@media only screen and (max-width: 600px) {
    .header {
        background-size: contain; /* Adjust to 'contain' for smaller screens */
        height: 100px; /* Adjust the height for smaller screens */
    }

    .custom-button {
        height: 150px;
        line-height: 150px;
        width: 100px;
        
        
    }
    
    body {
        font-size: 24px;
    }
    
    body .inner-container {
        max-width: 265px; /* Set a maximum width for the inner container */
        height: 485px;
        
    
    }
}

/* Media Query for larger screens */
@media only screen and (min-width: 768px) {
    .custom-button {
        height: 300px;
        line-height: 200px;
        width: 200px;
    }
}




