/* Text styles */

h1 {
    font-weight: 200;
    font-size: 90px;
}

.intro {
    font-family: 'Spectral-Regular', 'Times New Roman', serif;
    font-weight: normal;
    font-style: normal;
}

.subtext {
    font-family: 'Epilogue-Regular', 'Times New Roman', serif;
    font-weight: normal;
    margin: 50px 0px 0px 0px;
    max-width: 650px;
    display: block;
}

.subtext a,
.subtext a:visited {
    text-decoration: underline !important;
    color: #FFF8F0;
    transition: .2s;
}

.subtext a:hover {
    color: #E53D00
}


@media screen and (min-width: 1600px) {
    .intro {
        font-size: 80px;
        line-height: 80px;
    }
    .intro .name {
        font-size: 68px;
        line-height: 68px;
    }
}

@media screen and (max-width: 800px) {
    .intro {
        font-size: 40px;
        line-height: 40px;
    }
    .intro .name {
        font-size: 34px;
        line-height: 34px;
    }
}

body a,
body a:visited {
    text-decoration: none;
    color: #FFF8F0;
}


/* Fun links */

.etc:hover::after {
    content: "strategy, design, print";
    background-color: #1d1e1f;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    display: inline;
    position: absolute;
    font-family: 'Epilogue-Regular', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 0px 100px 0px 0px;
    color: #fff;
}

.school:hover::after {
    content: "economics, art history";
    background-color: #1d1e1f;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    display: inline;
    position: absolute;
    font-family: 'Epilogue-Regular', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 0px 100px 0px 0px;
    color: #fff;
}

.work:hover::after {
    content: "marketing and web producer";
    background-color: #1d1e1f;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
    display: inline;
    position: absolute;
    font-family: 'Epilogue-Regular', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 0px 100px 0px 0px;
    color: #fff;
}

a.etc,
a.school,
a.work {
    text-decoration:underline;
}

a.etc:hover {
    cursor: url("../cursor/eye2.png"), auto;
}

a.school {
    cursor: url("../cursor/eye2.png"), auto;
}

a.work {
    cursor: url("../cursor/eye2.png"), auto;
}


/* Button */

.email {
    background: linear-gradient(0deg, #BE3E82 0%, #E53D00 100%);
    box-shadow: 0 10px 30px rgb(0, 0, 0);
    border-radius: 10px;
    border: 1px solid #C200FB;
    display: block;
    width: fit-content;
    padding: 15px 30px;
    margin-top: 50px;
    font-family: 'Sneak-Regular', sans-serif;
    font-size: 24px;
    color: #FFF8F0;
    text-decoration: none;
}

.email a {
    transition: background-color .2s;
}

.email:hover {
    background: #C200FB;
    cursor: url("../cursor/mail.png"), auto;
}


/* Body */

html {
    cursor: url("../cursor/mountain.png"), auto;
}

body {
    background-color: #002626;
    font-family: 'Sneak-Regular', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    font-variant-ligatures: common-ligatures;
    margin: 5vw 5vw;
    color: #FFF8F0;
    max-width: 1200px;
}


/* Header */

ul.header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: none;
    position: fixed;
    right: 5vw;
    top: 50px;
    z-index: 10;
}

li.header {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

li.name {
    font-family: 'Sneak-Bold', sans-serif;
    font-size: 21px;
    line-height: 32px;
    position: fixed;
    color: #fff;
    left: 10%;
    top: 50px;
    width: 50%;
}

li.name-small {
    position: fixed;
    color: #fff;
    left: 10%;
    top: 50px;
    width: 50%;
}

li.header a,
li.header a:visited {
    display: block;
    color: #fff;
    padding: 0px 16px;
    text-decoration: none;
    transition: color .3s ease;
}

li.name a,
li.name a:visited,
li.name-small a,
li.name-small a:visited {
    color: #fff;
    font-weight: inherit;
    text-decoration: none;
    transition: color .3s ease;
    z-index: -1;
}

li.header a:hover,
li.name a:hover,
li.name-small a:hover {
    color: red;
    text-decoration: none;
}