@font-face { font-family: "SAO UI"; src: url(./assets/SAOUITT-Regular.ttf) }
@font-face { font-family: "SAO UI"; src: url(./assets/SAOUITT-Bold.ttf); font-weight: bold }

:root { --text-color: #5485ad }

* {
    padding: 0;
    margin: 0;
    color: var(--text-color);
    font-family: "SAO UI";

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none; 
}

body {
    background-color: black;
    background: center / cover no-repeat fixed url(./assets/background.webp);

    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

header {
    height: 25%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
header h1 {
    font-weight: bold;
    font-size: 7vw;
    align-self: center;
    justify-self: flex-start;
    padding-top: 1vh;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}
header h2 {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    letter-spacing: .5vw;
    font-size: 1.8vw;

    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20%;
}
header h2 img {
    height: 30%;
    margin-left: 2%;
    margin-right: calc(2% + .5vw);
    box-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

main {
    height: 80%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
}
main figure {
    height: 100%;
    width: 60vw;
    align-self: center;
    display: flex;
    justify-content: center;
}
main figure img { height: 100%; }
main figure img:first-child { -webkit-transform: scaleX(-1); transform: scaleX(-1); }
main figure img:last-child { -webkit-transform: scaleX(-1); transform: scaleX(-1); }

footer {
    height: 20%;
    overflow: hidden;
    padding-right: 15vw;

    display: flex;
    align-self: flex-end;
    justify-items: center;
    align-items: center;
}
footer img { height: 40%; padding: 2%; }
footer h3 { font-size: 130%; }
footer h4 { font-size: 108%; }
footer h4 a { text-decoration: none; }