h1 {
    font-size: 150px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    margin: 0;
}

div>h2 {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    font-size: 23px;
}

#header-wrapper {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 600px;
    height: 200px;
    top: 400px;
}

#bingus {
    position: absolute;
    width: 100%;
    animation-name: bingus-dance;
    animation-iteration-count: infinite;
    animation-duration: 0.75s;
    animation-timing-function: ease;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 150px;
}

@keyframes bingus-dance {
    50% {
        width: 80%;
        height: 600px;
        top: 0px;
    }

    100%, 0% {
        width: 100%;
        height: 450px;
        top: 150px;
    }
}

body {
    background-color: black;
    color: white;
    font-family: Helvetica, sans-serif;
}

hr {
    position: relative;
    top: 600px;
}

#sections {
    display: flex;
    margin-top: 625px;
    height: fit-content;
}
  
#section-one {
    flex: 0 0 50%
}
  
#section-two {
    flex: 1;
    border-left: 0;
}

.header {
    font-size: 1.75vw;
    text-align: center;
}

section {
    border: white 5px solid;
    border-bottom: 0;
}

.project {
    border: white 5px solid;
    border-radius: 10px;
    width: 300px;
    position: relative;
    height: 60px;
    padding: 5px;
    margin-left: 10px;
    margin-bottom: 20px;
}

.project-side-header {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    width: max-content;
    margin: 0
}

.project-img {
    position: absolute;
}

.project-info {
    position: absolute;
    left: 60%;
    top: 15%;
    transform: translateX(-50%);
    width: max-content;
}

.visit {
    display: block;
    position: relative;
    left: 60%;
    transform: translateX(-50%);
    width: max-content;
    top: 65%;
}

#about {
    position: absolute;
    right: 25%;
    transform: translateX(50%);
    font-size: 1.5vw;
}

#bottom-project {
    margin-bottom: 80px;
}