@font-face { 
	font-family: 'Shoguns Clan';
	src: url("font/ShogunsClan.ttf") format("truetype"),
         url("font/ShogunsClan.woff2") format("woff");
}

@font-face { 
	font-family: 'CollinWeather';
	src: url("font/Collin Weather.otf") format("truetype");
}


:root {
    font-size: 250%;
    background-color: #4a3057;
    color: #fff;
    font-family: "CollinWeather";
    text-align: center;
}

html, body {
    margin: 0;
    min-height: 2000px;
}

body {
    overflow: hidden auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25px;
}

header img {
    opacity: 0;
    width: 100vw;
    margin-bottom: -30vw;
    animation: slideIn 1.5s 1s linear forwards;
}

header .name {
    opacity: 0;
    animation: slideInFromBottom 1.5s 1s linear forwards;
}

h1 {
    font-family: "CollinWeather";
    color: #F4F4F4;
    font-weight: bold;
    margin: 0;
    font-size: 3rem;
}

h2 {
    display: inline-block;
    font-weight: 500;
    margin: 1rem .5rem 1rem .5rem;
    font-size: 1.1rem;
}

.discord_icon {
    fill: aliceblue;
    height: 48px;
    display: inline-block;
    vertical-align: -10px;
}

.discord_icon:hover {
    fill: #C60086;
}

.tabs {
    text-align: center;
    display: flex;
    width: 9em;
    justify-content: space-between;
    margin: 0 auto 75px auto;
    opacity: 0;
    animation: slideIn 1.5s 3s linear forwards;
}

    .tabs button {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: .5rem;
        padding: .3rem .6rem;
        background: none;
        color: #fff;
        border: none;
        border-bottom: solid 3px #fff;
        cursor: pointer;
    }

.tabs button:hover {
    color: rgb(0, 180, 46);
    border-color: rgb(0, 180, 46);
    text-shadow: white 0 0 10px;
}

.tabs .nsfw_button:hover {
    color: red;
    border-color: red;
}

a {
    text-decoration: none;
    color: inherit;
}

.rates {
    display: flex;
    justify-content: center;
    font-family: system-ui;
    font-size: .6rem;
    animation: slideInFromBottom 1.5s 3s linear forwards;
    z-index: 1;
    color: black
}

.rates-card h3 {
    font-size: 1em;
}

.rates-card {
    background: #FFF;
    width: 500px;
    padding: 50px;
    animation: introduce .2s linear forwards;
}

.rates-card svg.discord_icon {
    fill: black;
    height: 36px;
}

.rates-card a:hover svg.discord_icon {
    fill: #C60086;
}


.rates-card a:hover {
    color: #C60086;
}

.photos {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 4.5vh 4vw 15vh 4vw;
    opacity: 0;
    animation: slideInFromBottom 1.5s 3s linear forwards;
}

.photo {
    width: 40%;
    height: 30%;
    margin-right: -10%;
    margin-bottom: -50px;
    transform: rotate(10deg);
    background-color: #222;
    border: solid #fff 15px;
    animation: introduce .2s linear forwards;
    box-sizing: border-box;
}

.photo:hover {
    animation: focus .2s linear forwards;
    z-index: 1;
}

.photo img {
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .photo {
        width: 55%;
    }

    .photos {
        margin: 4.3vh 5vw 15vh 5vw;
    }
    
}


@media screen and (max-width: 1000px) {
    .photos {
        margin: 7vh 10vw 12.5vh 10vw
    }

    .photo {
        width: 100%;
        border-width: 2.5vw
    }

    header {
        margin-bottom: -10px;
    }

    header img {
        margin-bottom: -150px;
    }

    h1 {
        font-size: 12vw;
    }

    h2 {
        font-size: 5vw;
        margin-top: .5em;
        margin-right: 0;
    }

    .discord_icon {
        height: 36px;
    }
    
    .tabs {
        width: 70vw;
        margin-bottom: 50px;
    }

    .tabs button {
        font-size: .35em;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.01, 1.01);
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes introduce {
    from {
        transform: rotate(0) scale(1.2);
        border-color: white
    }
    to {
        
    }
}

@keyframes focus {
    from {
    }
    to {
        transform: rotate(0) scale(1.2);
        border-color: white
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
