body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    font-family: 'sans-serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    user-select: none;
    background-color: black;
    color: red;
}
header {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 5px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

h1 {
    font-weight: 400;
    margin: 0;
    line-height: 4rem;
    font-size: 4rem;
    color: white;
}

p {
    padding: 0;
    margin: 0;
    line-height: 2rem;
}

main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 1.5em;
    min-height: 60vh;
    box-sizing: border-box;
    width: 50vw;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 200px;
    user-select: none;
}

@media (max-width: 900px) {
    main {
        font-size: 1.2em;
    }
}

.box {
    border: 1px solid white;
    padding: 5px;
}
.box:hover {
    background-color: white;
    color: black;
}

#box-1 {
    height: 100px;
    width: 200px;
    overflow: scroll;
    position: absolute;
    top: 30%;
    left: 17%;
    transform: rotate(90deg);
}
#box-2 {
    height: 200px;
    width: 300px;
    overflow: scroll;
    position: absolute;
    top: 40%;
    right: 15%;
    transform: rotate(180deg);
}
#box-3 {
    height: 100px;
    width: 300px;
    overflow: scroll;
    position: absolute;
    top: 20%;
    right: 35%;
}
#box-4 {
    height: 300px;
    width: 300px;
    overflow: scroll;
    position: absolute;
    top: 55%;
    left: 20%;
    transform: rotate(-90deg);
}

h2 {
    position: absolute;
    top: 15%;
    width: inherit;
    font-size: 5rem;
    z-index: -1;
    font-weight: 400;
    font-style: italic;
}

.face {
    position: absolute;
    top: 25%;
    width: inherit;
    z-index: -1;
    height: 60%;
}

img {
    height: 100%;;
}

.contract {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 70vw;
    height: 75vh;
    z-index: 10;
    background-color: white;
    color: black;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input {
    margin-top: 100px;
    border: none;
    border: 1px solid black;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    width: 100%;
    height: 50px;
    font-size: 1.25rem;
    padding: 15px;
}
input:focus {
    outline: none;
    border: 1px solid red;
}
