@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    min-height: 100vh;
    background: rgba(245,211,147,1);
    background: linear-gradient(180deg, rgba(252,229,187,1) 0%, rgba(245,211,147,1) 100%);
    position: relative;
    padding-top: 10px;
    font-family: "Sour Gummy", sans-serif;
}

.icon {
    display: flex;
    justify-content: center;
    width: 30px;
    gap: 20px;
}

.i {
    width: 80%;
    height: 20px;
    position: relative;
    filter: invert(1);
    transition: .5s ease;
    transform: rotate(0deg);
}

.i.i-taco {
    background: url('/assets/img/icons/tako.png') center no-repeat;
    background-size: contain;
}

.i.i-carrd {
    background: url('/assets/img/icons/carrd.png') center no-repeat;
    background-size: contain;
}

.i.i-tiktok {
    background: url('/assets/img/icons/tiktok.png') center no-repeat;
    background-size: contain;
}

.i.i-x {
    background: url('/assets/img/icons/x.png') center no-repeat;
    background-size: contain;
}

.i.i-instagram {
    background: url('/assets/img/icons/instagram.png') center no-repeat;
    background-size: contain;
}

.i.i-youtube {
    background: url('/assets/img/icons/youtube.png') center no-repeat;
    background-size: contain;
}

.i.i-facebook {
    background: url('/assets/img/icons/facebook.png') center no-repeat;
    background-size: contain;
}

.i.i-discord {
    background: url('/assets/img/icons/discord.png') center no-repeat;
    background-size: contain;
}

.pasFoto {
    position: relative;
    width: 250px;
    height: 250px;
    transform-origin: top center;
    transform: scale(.75);
    border-radius: 500px;
    background: #AB8E53;
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    margin-bottom: -30px;
}

.pasFoto .vtuber-photo.is-dynamic-eye {
    display: block;
    width: 250px;
    height: 250px;
    margin: auto;
}

.pasFoto .vtuber-photo.is-dynamic-eye .vtuber-eyes {
    width: 100%;
    height: 100%;
    background: url('/assets/img/RumiRuthea/dynamic-vtuber-photo/eyes.png') center no-repeat;
    background-size: contain;
    position: relative;
}

.pasFoto .vtuber-photo.is-dynamic-eye .vtuber-pupils {
    width: 100%;
    height: 100%;
    background: url('/assets/img/RumiRuthea/dynamic-vtuber-photo/pupils.png') center no-repeat;
    background-size: contain;
    position: relative;
    top: -253px;
    left: -3px;
    transform: translateX(3px) translateY(3px);
    transition: .1s linear;
}

.pasFoto .vtuber-photo.is-dynamic-eye .vtuber-main {
    width: 100%;
    height: 100%;
    background: url('/assets/img/RumiRuthea/dynamic-vtuber-photo/eyes_open.png') center no-repeat;
    background-size: contain;
    position: relative;
    top: -500px;
}

.pasFoto .vtuber-photo.is-dynamic-eye .vtuber-main.is-blinking {
    background: url('/assets/img/RumiRuthea/dynamic-vtuber-photo/blink.png') center no-repeat;
    background-size: contain;
}

.socials {
    gap: 20px;
}

.text-group-title {
    font-size: 20px;
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
}

.row:first-of-type .text-group-title {
    margin-top: 0px;
}

.link-button {
    text-decoration: none;
    width: 300px;
    height: 40px;
    color: #fff;
    background: #B69FC4;
    border-radius: 200px;
    cursor: pointer;
    margin: 5px auto;
    transition: .3s ease;
    position: relative;
    box-shadow: 0 0 5px #B69FC4;
}

.link-button:hover {
    background: #9879ab;
    color: #000;
    width: 320px;
    height: 36px;
    margin-top: 7px;
}

.link-button:hover .i {
    filter: invert(0);
    transform: rotate(12deg);
}

.icon, .text {
    text-align: center;
    transition: .2s ease;
}

.text {
    font-size: 20px;
    font-weight: light;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-button:hover .text {
    font-size: 22px;
}

.icon {
    display: flex;
    width: 40px;
}

.icon > .i {
    filter: invert(0);
}

.icon:hover .i {
    filter: invert(1);
}

.footer {
    margin: 20px auto;
}