body {
    overflow-x: hidden;
    background: black;
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

.logo h1 {
    color: white;
    font-size: 100px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
    text-align: center;
}


.logo h2 {
    color: white;
    font-size: 60px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
    text-align: center;
}


.logo p {
    color: white;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}

.logo .scroll {
    color: white;
    font-size: 25px;
    margin: 0 auto;
    text-align: center;
    animation: marquee-scroll 15s linear infinite;
}

.logo a {
    color: white;
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}

.logo #link {
    color: white;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}

.long-hr {
    width: 200%;
    margin-left: -50%;
    border: none;
    height: 4px;
    background-color: white;
}

.box {
    width: 1150px;
    height: 550px;
    border: 2px solid white;
    padding-top: 40px;
    box-sizing: border-box;
    text-align: center;
}

#aboutme {
    height: 620px;
}

#interests {
    height: 1100px;
}

#coolpeople {
    height: 1165px;
}

#blog {
    height: 1870px;
}

.box h1 {
    color: white;
    font-size: 75px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
}

.box p {
    color: white;
    font-size: 25px;
    margin-top: 10px;
}

.box a {
    color: white;
    font-size: 25px;
    margin-top: 10px;
}


@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-100%);
    }

    50.0001% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}