@charset "UTF-8";

:root {
    -grobel-fonts: "Kiwi Maru Static";
}

html {
    font-family: var(--grobal-fonts);
}

body {
    font-family: Kiwi Maru;
    background-position: top;
    background-size: cover;
}

header {
    unicode-bidi: isolate;
    display: revert;
    background-color: rgba(255, 255, 255, 0.5);
    color: #f2c9c9;
    width: 100%;
    position: fixed;
    top: 0px;
}

.contents{
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 769px) {
    body {
        background-image: url(./main.png?v=1);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100vw;
        height: 100vh;
    }

    .left-text {
        font-size: 30px;
        color: #f2c9c9;
        white-space: nowrap;
        text-align: center;
    }

    .right-text {
        font-size: 30px;
        color: #f2c9c9;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        padding: 0 50px 0 0;
    }

    a {
        color: #f2c9c9;
        text-decoration: none;
    }

    .text1 {
        display: inline-block;
        padding: 0 5px;
    }

    .text2 {
        display: inline-block;
        padding: 0 5px;
    }

    .text3 {
        display: inline-block;
        padding: 0 5px;
    }
}


@media screen and (max-width: 768px) {

    body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    .navbar {
        width: 100%;
        box-shadow: 0 1px 4px rgb(146 161 176 / 55%);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: end;
        height: 62px;
    }

    .navbar .nav-container li {
        list-style: none;
    }

    body {
        background-image: url(./main1.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100vw;
        height: 100vh;
    }

    .left-text {
        font-size: 15px;
        padding: 20px 0 0 0;
        color: #f2c9c9;
    }

    .right-text {
        font-size: 10px;
        color: #f2c9c9;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        padding: 20px 50px 0 0;
    }

    a {
        color: #f2c9c9;
        text-decoration: none;
    }

}