@font-face {
    font-family: Schindler;
    src: url("Schindler2-Regular.otf");
}

body {
    margin: 0;
    font-family: Schindler;
}

.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    font-size: 5vw;
}

#joshua, #simon {
    display: grid;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-items: center;
}

a{
    color: inherit;
    text-decoration: none;
}

#joshua:before {
    content: "JOSHUA HAYMANN";
}

#joshua:hover:before {
    content: "JOsHUA HAyMaNN";
}

#simon:before {
    content: "SIMON THIEFES";
}

#simon:hover:before {
    content: "SIMOnn# THIEFEs";
}

#joshua:hover, #simon:hover  {
    background-color: black;
    color: white;
}

@media only screen and (max-width: 768px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }


}