/* space-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/space-mono-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    background-color: black;
    color: white;
    text-transform: uppercase;
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: 'Space Mono';
    font-weight: 400;
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    color: red;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
}

header .logoSmall img {
    width: 200px;
    padding: 2em 2em;
    cursor: pointer;
}

#desktopMenu {
    display: none;
}

#content {
    width: 80%;
    height: 100%;
    margin: auto;
}

#content p {
    line-height: 1.2;
}

.home .logoSmall {
    display: none;
}

.home #content {
    width: 80%;
}

.home #content .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home #content .hero img {
    width: 100%;
}

.home #content #mobileContent > div {
    margin: 10em 0;
}

.about #content {
    margin: 20% auto 0;
}

@media screen and (min-width: 800px) {

    #mobileContent {
        display: none;
    }

    #desktopMenu {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    #desktopMenu ul {
        display: flex;
        flex-direction: row;
        margin: 0 auto 3%;
        padding: 0;
        justify-content: space-between;
        width: 70%;
    }

    .home #content {
        width: 70%;
    }

    body.service li.service {
        color: red;
    }

    body.about li.about {
        color: red;
    }

    body.contact li.contact {
        color: red;
    }

    .about #content {
        margin: auto;
    }

    #content p {
        max-width: 80%;
    }
}
