/* General Styles */
body {
    font-family: 'Play', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Error Page Styles */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    text-align: center;
}

.container {
    max-width: 600px; /* Max width for the content */
    padding: 20px;
}

h1 {
    font-size: 80px; /* Large font size for error code */
    color: #ff0000; /* Red color for error code */
}

h2 {
    font-size: 24px; /* Subheading size */
    color: #333333; /* Dark gray color */
}

p {
    font-size: 16px; /* Paragraph size */
    color: #666666; /* Light gray color */
}

/* Search Box Styles */
.search-box {
    margin: 20px 0; /* Margin around the search box */
}

.search-box input {
    padding: 10px;
    width: 70%; /* Width of the input field */
}

.search-box button {
    padding: 10px;
}

/* Menu Links Styles */
.menu {
    margin-top: 20px; /* Margin above the menu links */
}

.menu a {
    display: inline-block;
    margin: 10px; /* Space between links */
    text-decoration: none; /* Remove underline from links */
    color: #007bff; /* Link color */
}

/* Image Styles */
.error-image {
    max-width: 100%; /* Responsive image size */
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Design */
@media (max-width: 768px) {
    
     h1 {
         font-size: 50px; /* Adjust heading size for mobile */
     }

     h2 {
         font-size: 20px; /* Adjust subheading size for mobile */
     }

     p {
         font-size: 14px; /* Adjust paragraph font size for mobile */
     }

     .search-box input {
         width: 100%; /* Full width input on mobile */
     }
}
