@font-face {
    font-family: 'LEMON MILK';
    src: url('fonts/LEMONMILK-Regular.woff2') format('woff2'), url('fonts/LEMONMILK-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LEMON MILK';
    src: url('fonts/LEMONMILK-Bold.woff2') format('woff2'), url('fonts/LEMONMILK-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/MADETOMMY-Bold.woff2') format('woff2'), url('fonts/MADETOMMY-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('fonts/MADETOMMY.woff2') format('woff2'), url('fonts/MADETOMMY.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --c-lightgray: #C8C8C8;
    --c-white: #fcfcfc;
    --c-bg: #050505;
    --c-gray: #161616;
    --c-grad1: #0074FF;
    --c-grad2: #3dc5ff;
    --c-grad2-dark: #2Baeff;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--c-bg);
    overflow-x: hidden;
    font-family: "LEMON MILK", sans-serif;
    color: var(--c-white);
}

svg {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

#svgh {
    display: block;
}

.svgp {
    display: none;
}

.chup {
    position: relative;
    display: block;
    transform: rotate(90deg);
}

.chdown {
    position: relative;
    display: block;
    transform: rotate(90deg);
}

.center-grid {
    display: grid;
    width: 80%;
    position: relative;
    column-gap: 0;
    margin-left: 10%;
    align-items: center;
    grid-template-columns: 33.3334% 33.3334% 33.3334%;
}

.center-ingrid {
    display: inline-grid;
    text-align: left;
    position: relative;
}

#ingrfirst {
    padding-right: 5% !important;
}

#ingrlast {
    padding-left: 5% !important;
}

#flright {
    float: right;
}

.first-line {
    font-size: 3vw;
    line-height: 3vw;
    color: var(--c-lightgray);
    position: relative;
    white-space: nowrap;
}

.first-line img {
    height: 3vw;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.first-line img:hover {
    transform: scale(1.1);
}

.second-line {
    font-weight: bold;
    font-size: 5vw;
    line-height: 5vw;
    position: relative;
    white-space: nowrap;
}

.second-line font {
    position: relative;
    z-index: 4;
}

@keyframes loadEffect {
    from {
        width: 0;
    }
    to {
        width: 60%;
    }
}
.second-line span {
    width: 60%;
    left: 0;
    bottom: -.8vh;
    height: 1vw;
    position: absolute;
    background: linear-gradient(to bottom right, var(--c-grad2), var(--c-grad1));
    animation: loadEffect 0.8s ease-in-out;
}

.third-line {
    font-size: 2vw;
    line-height: 2vw;
    letter-spacing: 3px;
    margin-top: 1vw;
    white-space: nowrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.bgi {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--c-grad1), var(--c-grad2));
    animation: fadeIn 1s ease-in-out;
}

.bgi2 {
    position: absolute;
    top: 5%;
    left: 5%;
    height: 90%;
    width: 90%;
    border-radius: 50%;
    background-color: var(--c-bg);
}

.center-ingrid #centerimg {
    width: 80%;
    display: block;
    position: relative;
    opacity: 0;
    margin: 10%;
    transition: opacity 0.5s ease-in-out 1s;
}

#ingrlast {
    text-align: left;
    font-family: "MADE TOMMY", sans-serif;
}

#ingrlast a {
    color: var(--c-lightgray);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: block;
    font-size: 1.5vw;
    margin-bottom: 1vw;
    white-space: nowrap;
}

#ingrlast a img {
    width: 2vw;
    margin-right: 1vw;
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.text {
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.bold {
    font-weight: bold;
    color: var(--c-white);
    transition: color 0.2s ease-in-out;
}

#ingrlast a:hover {
    color: var(--c-grad2) !important;
}

#ingrlast a:hover .bold {
    color: var(--c-grad2) !important;
}

.copyright {
    display: block;
    text-align: center;
    color: var(--c-lightgray);
    font-size: 1.5vh;
    margin-top: 5%;
    margin-bottom: 1vh;
    opacity: .6;
}

@media (max-width: 2400px) {
    .center-grid {
        width: 95%;
        margin-left: 2.5%;
    }
}

@media (max-width: 980px) and (orientation: portrait) {
    #svgh {
        display: none;
    }
    .svgp {
        display: block;
    }
    .center-grid {
        display: grid;
        width: 90%;
        position: relative;
        column-gap: 0;
        margin-left: 5%;
        align-items: center;
        grid-template-columns: 100%;
        margin-top: 0;
    }
    #ingrct {
        display: none;
    }
    #flright {
        float: none;
        text-align: center;
    }
    #ingrfirst {
        padding-right: 0 !important;
    }
    #ingrlast {
        padding-left: 0 !important;
        margin-top: 20%;
    }
    .first-line {
        font-size: 4vh;
        line-height: 4vh;
    }
    .second-line {
        font-size: 9.5vh;
        line-height: 9.5vh;
        display: inline-block;
    }
    .second-line span {
        left: -5%;
        bottom: -.5vh;
        height: 2vh;
    }
    .third-line {
        font-size: 3vh;
        line-height: 3vh;
        margin-top: 1vh;
    }
    #ingrlast a {
        font-size: 2vh;
        margin-bottom: 2vh;
    }
    #ingrlast a img {
        width: 2.5vh;
        margin-right: 1vh;
    }
    #ingrlast #firstdiv {
        position: relative;
        display: inline-block;
        width: auto;
        text-align: center;
    }
    #seconddiv {
        text-align: left !important;
        display: inline-block;
        position:Relative;
    }
    .copyright {
        font-size: 1.5vh;
        margin-top: 10%;
        margin-bottom: 1%;
    }
}

.invisible {
    opacity: 0;
    border: none;
    outline: none;
    width: 1px;
    height: 1px;
}

#copydiscord {
    position: relative;
}

.copiedeffect {
    opacity: 0;
    position: absolute;
    top: -3vw;
    font-size: 1.25vw;
    font-weight: bold;
    color: var(--c-white);
    background: linear-gradient(to right, var(--c-grad1), var(--c-grad2-dark));
    padding: .25vw 1vw;
    border-radius: 3vw;
    left: 20%;
    text-align: center;
}

@keyframes animeff {
    from {
        top: -3vw;
        opacity: 1;
    }
    to {
        top: -4.5vw;
        opacity: 0;
    }
}

.animeff {
    animation: animeff 0.5s ease-in-out;
    animation-delay: 0.25s;
}

@media (max-width: 980px) and (orientation: portrait) {
    @keyframes animeff {
        from {
            top: -3vh;
            opacity: 1;
        }
        to {
            top: -4vh;
            opacity: 0;
        }
    }
    .copiedeffect {
        width: auto !important;
        font-size: 2vh;
        padding: 0.5vh 1vh;
        top: -3vh;
        left: 30%;
    }
}
