@font-face {
    font-family: Signature;
    src: url(../fonts/arg.woff2);
}

body {
    background: linear-gradient(250deg,#1e1d20, #5e5e79);
    padding: 0;
    margin: 0;
    font-family: Montserrat, sans-serif;
}


section {
    display: grid;
    grid-template-columns: 1fr 450px;
}

#wrap {
    height: 100vh;
    max-width: 100%;
    display: flex;
    align-items: center;
}
#content {
    padding: 25px;
    position: fixed;
}
h1 {
    text-align: end;
    color: whitesmoke;
}

.signature {
    font-family: Signature, serif;
    font-weight: 100;
    font-size: 2em;
    line-height: 1.2em;
}

.tracking {
    letter-spacing: 30pt;
}

div {
    color: whitesmoke;
    text-align: end;
}

a {
    color: whitesmoke;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: lightgray;
}

.sociallinks a{
    display: inline-block;
    padding-left: 30px;
    padding-top: 15px;
    font-size: larger;
}
@media screen and (max-width: 1000px) {
    section {
        grid-template-columns: 1fr;
        grid-template-rows: min-content 1fr;
    }

    #wrap {
        grid-row: 1;
        height: 60vh;
        display: grid;
    }

    #content {
        max-width: 80vw;
        position: absolute;
        right: 0;
    }
    #gallery {
        grid-row: 2;
    }

}