*{ 
    box-sizing: border-box;
 }

body {
    background-color: black;
    font-family: 'Bebas Neue', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: white;
    font-size: 5vw;
}

/*Navigation bar*/
.logo {
    justify-content: space-between;
    width: 20%;
    height: 20%;
    margin: 0 0.5rem;
}

nav {
    font-size: 2vw;
    width: 100%;
    display: flex;
    background-image: linear-gradient(to left, darkblue, black);
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
}

li {
    list-style-type: none;
    margin: 0 2rem;
}

a {
    text-decoration: none;
    color: white;
}

/*Hero section*/
.hero {
    width: 100%;
    height: 85%;
    background-image: linear-gradient(to bottom, rgba(200,200,200,0.8), rgba(50,50,50,0.5)), url('../Images/hero-main.jpg');
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

/*Image gallery section*/
.gallery {
    display: flex;
    flex-direction: row;
    margin: 0.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    float: left;
    flex: 25%;
    max-width: 25%;
    padding: 0.5rem;
}

.column img {
    width: 100%;
    margin: 0.5rem;
}

/*Footer*/
footer {
    font-size: 2vw;
    width: 100%;
    display: flex;
    background-image: linear-gradient(to right, darkblue, black);
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
}

/*MEDIA QUERIES */

/* TABLET */
@media screen and (max-width: 768px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }

    .hero {
        width: 100%;
        height: 80%;
    }

    h1 {
        font-size: 8vw;
    }

    li {
        list-style-type: none;
        margin: 0 1rem;
        font-size: 4vw;
    }
}
    
/* MOBILE */
@media screen and (max-width: 540px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
    
    .hero {
        width: 100%;
        height: 80%;
    }

    h1 {
        font-size: 10vw;
    }

    li {
        list-style-type: none;
        margin: 0 0.5rem;
        font-size: 5vw;
    }
}