@import url('https://fonts.googleapis.com/css?family=Tiny5');
@import url('https://fonts.googleapis.com/css?family=Nunito');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(8, 8, 8);
    color: white;
    margin: 0;
    margin-top: 5vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    text-align: center;
}

h1 {
    font-family: Tiny5;
    padding-left: 3vh;
    font-size: 130px;
    background: url('https://nippon.luhu.jp/frp3YF.gif');
    background-clip: text;
    color: transparent;
    background-size: 100% auto;
    text-shadow: none;
    transition: text-shadow 0.3s ease-in-out;
}

h1:hover {
    text-shadow: 0 0 30px #ffffff;
}

.container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.description {
    font-family: "Nunito";
    font-style: italic;
    font-size: 20px;
    text-align: center;
    color: white;
}

.osu, .skinhub, .discord, .twitter {
    color: #ffffff;
    text-shadow: none;
    transition: text-shadow 0.3s ease-in-out;
}

/* .osu {
    color: #FF7EB7;
} */

.osu:hover {
    text-shadow: 0 0 5px #FF7EB7;
}

/* .skinhub {
    color: #510359;
} */

.skinhub:hover {
    text-shadow: 0 0 5px #510359;
}

/* .youtube {
    color: #FF0000;
} */

.youtube:hover {
    text-shadow: 0 0 5px #FF0000;
}

.area:hover {
    text-shadow: 0 0 5px #5b65ff;
}

.twitter:hover {
    text-shadow: 0 0 5px #1da1f2;
}

.discord:hover {
    text-shadow: 0 0 5px #7289da;
}