body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'futura-pt', sans-serif; /* This is assuming you're using Typekit for Futura PT */
}

.container {
    background-image: url('src/clouds.png'); /* image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* Full viewport height */
}

header {
    /* No need for specific header styling if you want it transparent and taking the width of its content */
}

h1 {
    font-size: 4em; /* Adjust size as needed */
    color: #333;
    margin: 0;
    padding: 0;
}

nav {
    margin-top: 1em; /* Space between logo and icons */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #333; /* Icon color */
    text-decoration: none;
    font-size: 2em; /* Icon size */
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #555; /* Hover effect color change */
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* Smaller font size for mobile */
    }

    nav ul li a {
        font-size: 1.5em; /* Smaller icons for mobile */
    }
}

