body, html {
    margin: 0;
    padding: 0;
    height: 100%;    
	font-family: 'Roboto', sans-serif; /* Changed font to Roboto */
    background-color: #f8f8f8; /* Light gray background */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    text-align: center;
}

body {
    overflow: auto; /* Allow vertical scrolling if needed */
}

.container {
    max-width: 80%;
	min-width: 50vw;
    margin: 7.5vw 0 7.5vw 0;
    padding: 20px;
    background-color: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	position: relative; /* Ensure .container is positioned */
	z-index: 2; /* Set z-index higher than .falling-photos */
}

/* Media query for screens wider than 1200px */
@media screen and (min-width: 1200px) {
    .container {
        min-width: 30vw;
    }
}

h1 {
    color: #ff6735; /* Orange text */
    margin-top: 0;
}


    color: #4a2326; /* Orange text */
    margin-top: 0;
}

p {
    color: #333; /* Dark text */
}

.logo {
    width: 200px; /* Set a fixed width for your logo */
    height: auto;
}

.social-links,
.delivery-logos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links a,
.delivery-logos a {
    display: inline-block;
    margin: 10px 15px 10px 15px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.social-links img,
.delivery-logos img {
    width: 50px; /* Set a fixed width for uniform size */
    height: 50px; /* Set a fixed height for uniform size */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.social-links a:hover,
.delivery-logos a:hover {
    transform: scale(1.1);
}

.order-online,
.get-in-touch {
    margin-top: 10px;
    padding: 10px;
    background-color: #f3f3f3; /* Lighter gray background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.get-in-touch {
	margin-top: 25px;
}

.order-online p,
.get-in-touch p {
    color: #333; /* Dark text */
    margin: 0;
}

.order-online a,
.get-in-touch a {
    color: #ff6735; /* Orange text */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.order-online a:hover,
.get-in-touch a:hover {
    color: #d9534f; /* Darker orange on hover */
}

.falling-photos {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1; /* Set z-index to be lower than .container */
}

.falling-photo {
    position: absolute;
    width: 30vw; /* Adjust the size of the falling photos */
    height: 30vw;
    background-size: cover;
    border-radius: 50%;
    animation: fallAnimation 10s linear infinite;
	z-index: 1; /* Set z-index to be lower than .container */
}

/* Media query for screens wider than 1200px */
@media screen and (min-width: 1200px) {
    .falling-photo {
        width: 20vw; /* Adjust the size of the falling photos */
        height: 20vw;
    }
}

/* Media query for screens wider than 1200px */
@media screen and (min-width: 1600px) {
    .falling-photo {
        width: 15vw; /* Adjust the size of the falling photos */
        height: 15vw;
    }
}

.falling-photo.anti-clockwise {
    animation: antiClockwiseAnimation 5s linear infinite;
}

@keyframes fallAnimation {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(180deg);
    }
}

@keyframes antiClockwiseAnimation {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(-180deg); /* Negative angle for anti-clockwise rotation */
    }
}
