@font-face {
    font-family: 'Sui Generis';
    src: url('../font/sui-generis.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Sui Generis';
}
body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../image/background.png");
}
#join {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 8px 24px;
    background: linear-gradient(#1af7ff, #00ffd0);
    border-radius: 16px;
    color: #000;
    text-decoration: none;
}

.link-pos {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: flex;
    gap: 46px;
    transform: translate(-50%, 0);
    z-index: 2;
}

.common_link {
    display: block;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 100ms;
}

.common_link:hover {
    opacity: .8;
}

.twitter_link {
    background-image: url("../image/x-logo.png")
}
.dex_link {
    background-image: url("../image/dex-icon.png")
}
.coingecko_link {
    background-image: url("../image/coingecko-icon.png")
}
.cookie_link {
    background-image: url("../image/cookie-icon.png")
}

#write_text {
    position: absolute;
    display: block;
    width: calc(100vw - 40px);
    padding: 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* text-shadow: 0 0 6px rgba(255, 255, 255, 0.30); */
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    z-index: 2;
}
