html {
  min-height: 100%;
  margin: 0;
}

body {
    min-height: 100vh;
    color: #fff;
    background: #000;
    background-image: url('../img/horse.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 500px;
    margin: 0;
}

.wrapper {
    max-width: 1000px;
    padding: 100px;
}

h1 {
    font-family: "Funnel Display", sans-serif;
    font-size: 75px;
    font-weight: 100;
    line-height: 80px;
    margin: 0;
}

.post {
    color: #9E927D;
}

section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

p {
    font-family: "JetBrains Mono", monospace;
    font-weight: 300;
    margin: 0 0 22px 0;
    font-size: 15px;
    line-height: 25px;
    font-style: normal;
}

.italic {
    font-style: italic;
}

div {
    max-width: 450px;
}

hr {
    width: 150px;
    height: 2px;
    background: #9E927D;
    margin-left: 0;
    margin-right: auto;
}

a {
    color: #fff;
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9E927D;
    transition: color 0.3s ease;
}

.fade {
    opacity: .7;
}