body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: lightgrey;
    display: flex;
    flex-direction: column;
    min-height: 99vh;
}

h1 {
    font-size: 75px;
    font-weight: 200;
}

@media (max-width: 600px) {
    h1 {
        font-size: 55px;
        font-weight: 200;
    }
}

body hr {
    max-width: 700px;
    width: 100%;
    margin-left: 0;
    border: 0.5px solid lightgrey;
    margin-top: 0px;
    opacity: 50%;

}

#disappointed {
    font-size: 12px;
    font-weight: 200;
    margin-bottom: 0;
    margin-top: 0;
}

header p {
    font-size: 25px;
    font-weight: 200;
    margin-bottom: 40px;
}

main {
    flex-grow: 1;
}

main p {
    text-align: right;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 200;
    max-width: 700px;
    width: 100%;
}

a {
    color: lightgrey;
    text-decoration: none;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: whitesmoke;
    transition: width 0.3s ease;
}

a:hover {
    color: white;
}

a:hover::after {
    width: 100%;
}

footer {
    font-size: 12px;
    text-align: right;
    font-weight: 200;
    padding-bottom: 5px;
    max-width: 700px;
    width: 100%;
}