@font-face {
    font-family: 'Lilita One';
    font-style: normal;
    font-weight: 400;
    src: url('LilitaOne-Regular.ttf') format('truetype'); 
}

html {
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior-y: none;
}

body {
    margin: 0;
    background-color: #6367FF;

    display: flex;
    justify-content: center;
}

h1 {
    margin: 10px;
    text-align: center;
    font-size: 72px;
    color: #FFDBFD;
}

h2 {
    margin: 10px;
    text-align: center;
    font-size: 48px;
    color: #C9BEFF;
}

div {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: #C9BEFF;
    text-align: left;
    font-size: 24px;
}

.App {
    width: 1282px;
    min-height: 588px;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "Lilita One", sans-serif;
}

#ReturnButton {
    width: 5vw;
    aspect-ratio: 1 / 1;
    position: fixed;

    background-color: #C9BEFF;
    border-radius: 10px;
    border: none;

    top: 5px;
    left: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#ReturnButton > img {
    width: 80%;
    height: 80%;
}

button, a {
    transition: transform 0.2s ease;
}

button:hover, a:hover {
    transform: scale(1.01);
}

@media (orientation: portrait) {
    #ReturnButton {
        width: 10vw;
        height: auto;
        aspect-ratio: 1 / 1;
        position: fixed;
    }

    #ReturnButton > img {
        width: 90%;
        aspect-ratio: 1 / 1;
    }

    h1 {
        margin: 20px;
        font-size: 40px;
    }

    h2 {
        margin: 10px;
        font-size: 30px;
    }

    a {
        text-align: center;
        font-size: 14px;
    }   
}