* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    background-color: rgb(24, 24, 24);
    background-image: url('imgs/stone-texture.jpg');
    color: black;
    font-family: Arial, sans-serif;
}

div#logo {
    position: absolute;
    width: 12vw;
    left: calc(50vw - 12vw / 2);
    top: calc(50vh - 12vw / 2);
    z-index: 2;
}
div#logo img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px black;
}

div#left, div#right {
    float: left;
    width: 47.5%;
    height: 100%;
}
div#left {
    background-color: transparent;
    color: white;
}
div#center {
    float: left;
    width: 5%;
    height: 100%;
    background-color: transparent;
    border-top: 100vh solid transparent;
	border-left: 0px solid transparent;
	border-right: 4.9vw solid white;
}
div#right {
    background: white
}

div#left h1, div#right h1 {
    text-align: center;
    margin-top: calc(50vh - 2vw / 1.5);
    font-size: 2vw;
    text-shadow: 0 0 2px black;
    transform: scaleY(1.15) scaleX(0.9);
    user-select: none;
    transition-duration: 0.3s;
}
div#left h1 a, div#right h1 a, div#left h1 a:visited, div#right h1 a:visited {
    text-decoration: none;
    color: inherit;
}
div#left h1:hover, div#right h1:hover {
    cursor: pointer;
    font-size: 2.3vw;
    margin-top: calc(50vh - 2.1vw / 1.5);
}


div#left h1 {
    color: #daae00;
}
div#right h1 {
    color: #e63131;
}