/* emily color: #dd536a */

@font-face {
    font-family: asteroidblaster;
    src: url(fonts/Asteroid\ Blaster.ttf);
}

.nsfw-dot {
    font-size: 25px;
    position: absolute;
    top: -15px;
    right: -15px;
}

@media only screen and (max-width: 500px) {
    .nsfw-dot {
        font-size: 20px;
        position: absolute;
        top: -15px;
        right: -15px;
    }
}

body {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(-45deg, #e9adcb, #e07a8b, #e591c5, #df9aba);
    background-size: 500% 500%;
    animation: gradient 12s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#nachan {
    font-family: asteroidblaster;
    font-size: 50px;
    color: #dd536a;
    margin: 10px;
    margin-top: 20px;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

#subtitle {
    font-family: asteroidblaster;
    font-size: 20px;
    color: #dd536a;
    margin: 0;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

a {
    text-decoration: none;
}

.main-container {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    height: 100%
}

.main-container>#div-separator {
    background-color: #dd536a;
    height: 2px;
    width: 100%;
    border-bottom: 2px solid #df536a
}

.main-container>#logo {
    width: 100%;
}

#img-logo {
    max-width: 600px;
    width: 100%;
    height: 100%;
}

.site-logo-container {
    position: relative;
}

.main-container>#content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    width: 100%;
}

.main-container>#content>#links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: transparent;
}

.main-container>#content>#links>.row {
    display: flex;
    gap: 20px;
}

.site-logo {
    max-width: 80px;
    max-height: 80px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.site-logo:hover {
    transform: scale(1.1);
    transition: transform 0.1s ease-in-out;
}

.nav-container {
    margin-top: 20px;
}

.custom-button {
    align-items: center;
    appearance: none;
    background-color: #dd536a;
    background-image: linear-gradient(1deg, #dd536a, #91246d 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: CircularStd, sans-serif;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.custom-button:active,
.custom-button:focus {
    outline: none;
}

.custom-button:hover {

    transform: scale(1.1);
    transition: transform 0.1s ease-in-out;
}

.custom-button:focus:not(:active) {
    box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}
