/* Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #fff;
    background-color: #efefef;
    line-height: 1.2;
    font-size: 16px;
}

h1, h2, h4 {
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 0.9rem;
}

a {
    text-decoration: none;
}

button {
    outline: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}


/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2.4rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-reverse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-align {
    text-align: center;
}

i {
    font-size: 1.5rem;
    color: #fff;
    margin-right: 10px;
}

/* Other Styles */
header {
    height: 100vh;
    background: url('../img/bg.jpg') rgba(0, 0, 0, 0.7);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

nav {
    display: flex;
    align-items: center;
}

nav img {
    width: 50px;
}

.showcase {
    height: 50vh;
}

.showcase h1 {
    font-size: 4.5rem;
}


/* Media Queries */
@media screen and (max-width: 600px) {
    header {
        height: 100%;
    }

    .showcase h1 {
        font-size: 3rem;
    }

    .info {
        flex-direction: column;
    }

    .flex-reverse h2 {
        font-size: 1rem;
    }

    nav img {
        width: 30px;
    }
}

@media screen and (max-width: 375px) {
    .showcase h1 {
        font-size: 2.5rem;
    }
}