/* Styles for some specific pages */
header {
    background-color: #192024;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header, .header2 {
    color: #676770;
    line-height: 100px;
    letter-spacing: 5px;
    font-weight: 600;
}

.header {
    font-size: 80px;
    text-align: center;
}

.header2 {
    font-size: 50px;
}

#head-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    flex-direction: column;
}

header h1 {
    font-size: 110px;
    font-weight: bold;
    text-align: center;
    color: white;
    margin-bottom: 15px;
    margin-top: 0;
}

header span {
    font-size: 24px;
    color: #8e8e9c;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

body  {
    background-color: #edeff2;
}

h2 a {color: white;}
/* Mobile breakpoints */
@media only screen and (max-width: 800px) {
    .header {
        font-size: 65px;
        letter-spacing: 0px;
    }
    #main {
        width: 90%;
        margin: 0 auto;
    }
    .header2 {
        font-size: 30px;
    }
    
    header h1 {
        font-size: 70px;
    }
}

@media only screen and (max-width: 420px) {
    .header {
        font-size: 40px;
    }
    header span {
        font-size: 14px;
    }
    header h1 {
        font-size: 60px;
    }
    #main {
        width: 100%;
    }
}

@media only screen and (max-width: 350px) {
    .header {
        font-size: 30px;
    }
    header h1 {
        font-size: 50px;
    }
}
