html, body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    max-width: 1440px;
    min-width: 575px;
    justify-content: center;
}

/* Header Styles */
header {
    display: flex;
    padding: 20px;
    justify-content: baseline;
    align-content: center;
    background-color: #ffffff;
    box-shadow: 2px -2px 10px rgba(3,3,3,0.1);
    flex-direction: row;
}

/* Styles for navigation and logo */
nav {
    display: flex;
    flex: 3;
    justify-content: baseline;
}

.logo {
    color: #030303;
    font-size: 1.5vw; /* Responsive font size */
    font-weight: bold;
    line-height: 49px;
}

ul {
    display: flex;
    flex-direction: row;
    padding-left: 5px;
}

li, li a {
    list-style: none;
    text-decoration: none;
    color: #000;
    margin: 0 3px;
    font-size: 0.8vw; /* Responsive font size */
    font-weight: 600;
    line-height: 21px;
    text-align: center;
}

/* Button Styles */
.buttons {
    padding-top: 10px;
}

.button-v1, .button-v2 {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    margin: 0;
    font-weight: bold;
    font-size: 0.8vw; /* Responsive font size */
}

.button-v1 {
    background-color: #000;
    color: #fff;
}

.button-v2 {
    background-color: transparent;
    color: #000;
}

/*Main Section Styles*/

/* Main Section Styles with Animation */
main {
    text-align: center;
    padding: 50px 20px;
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message h1 {
  color: #030303;
  font-size: 64px;
  
  font-weight: 600;
  line-height: 70px;
}

.error-message p {
    color: #ffffff;
  font-size: 1.5em;
  
  line-height: 24px;
  text-align: center;
}

.go-back-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
}



/* Box styles */
.box {
    flex: 1; /* Boxes take up equal space */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: start;
}

.container {
    align-content: center;
    display: flex;
    flex-direction: row; /* Divs side by side */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: space-between; /* Distribute space evenly */
    background-color: white;
    padding: 20px;
    gap: 20px; /* Space between the boxes */
    margin: 10px auto; /* Center the container with auto margins */
    max-width: 1200px; /* Maximum width of the container */
    animation: fadeInTop 1s ease-out forwards; /* Applying the animation */
}

/*Footer Styles*/
.footer-container {
    padding: 2vw;
}

/* Applying the animation to the SVG */
.footer-container svg {
    width: 94vw;   /* 84% of viewport width */
    max-width: 1440px;
    height: auto; 
    display: block;
}

@media (max-width: 600px) {

    .logo, .button-v1, .button-v2, li, li a {
        font-size: 2.5vw; /* Adjusted font size for smaller screens */
    }
}


.footer-quote {
    color: #ffffff;
    padding: 2em;
  background-color: #96c560;
}


