@font-face {
    font-family: titleFont;
    src: url(../fonts/LEDLIGHT.otf);
  }

body {
    background-color: black;
    height: 97vh;
    width: 96vw;
}

footer {
    width: 100%;
}

small {
    font-family: 'Courier New', Courier, monospace;

    color: grey;
}

.email {
    float: left;
}

@media screen and (min-width: 768px) {
    .email {
        float: right;
    }
}

/* Mobile */
.title {
    font-family: titleFont;
    color: white;
    font-size: calc(50px + 6 * ((100vw - 320px) / 680));
    margin-block-start: 0%;
    margin-block-end: 0%;
    line-height: 90%;
}

/* Mobile */
.container {
    display:flex;
    height: 100%;
}

/* Mobile */
.insta-post {
    /* max-width: 50px; */
    display: none;
    justify-self: center;
    margin: 1vw;
    max-height: 90vh;
    overflow:visible;
}

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

    body {
        width: 99vw;
        height: 97vh;
    }

    .container {
        display: grid;
        height: 100%;
        grid-template-rows: 100%;
        grid-template-columns: 60vw 40vw;
    }

    .insta-post {
        /* max-width: 50px; */
        display: block;
        justify-self: center;
        margin: 1vw;
        max-height: 90vh;
    }
    .title {
        font-family: titleFont;
        color: white;
        font-size: 15em;
        margin-block-start: 0%;
        margin-block-end: 0%;
        line-height: 90%;
    }
}




