/* Font */

@font-face {
    font-family: Gibson-Light;
    src: url("../assets/gibson-light.otf");
}
@font-face {
    font-family: Gibson-SemiBold;
    src: url("../assets/gibson-semi-bold.otf");
}

/* Elements */

html, body {
    position: fixed;
    height: 100%;
    width: 100%;
    font-family: Gibson-Light;
    min-height: 750px;
    background-color: #000A21;
    margin: 0px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

h1 {
    font-family: Gibson-SemiBold;
    font-size: 1.2em;
}

h2 {
    margin: 5px 0;
    font-size: 1.2em;
}

p {
    font-size: 1em;
    font-family: Gibson-Light;
    margin: 7px 0;
}

a {
    font-family: Gibson-SemiBold;
    color: white;
    text-decoration: none;
}

.text-container {
    margin-left: 10px;
}

.logo {
    width: 250px;
}

/* Mascot */
.mascot-container {
    position: relative;
    width: 220px;
    height: 250px;
    margin-top: 40px;
}

.mascot-container div {
    position: absolute;
    top: 34px;
    left: 105px;
    width: 100px;
}

.mascot-container p {
    font-size: 0.6em;
    text-align: center;
}

.mascot-container a {
    display: block;
    font-size: 0.6em;
    text-align: center;
}

.mascot-container img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Media */
@media all and (min-width: 600px) {
    body {
        background-image: url("../assets/splash.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        justify-content: space-around;
    }

    .content {
        padding-right: 20em;
    }
}

@media all and (min-width: 960px) {
    body{
        font-size: 18px;
    }
}
 
@media all and (max-width: 959px) and (min-width: 600px) {
    body{
        font-size: 16px;
    }
}

@media all and (max-width: 599px) and (min-width: 320px) {
    .content {
        margin: 50px 50px 0 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}