/* _content/GameJutsuStudio/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/GameJutsuStudio/Components/Pages/Home.razor.rz.scp.css */
.main-container[b-yino8ebkz7] {
    margin: 0;
    padding: 0;
    background-color: #0a1a3f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
    flex-direction: column;
    text-align: center;
}

.hello[b-yino8ebkz7] {
    color: #992474;
    font: italic small-caps bold 30px cursive;
    margin-top: 20px;
}

.socials-container[b-yino8ebkz7]{
    display: flex;
    gap: 20px;
}

.socials-container a[b-yino8ebkz7]{
    background-color: transparent;
    fill: #992474;
    padding: 1em;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.socials-container a svg[b-yino8ebkz7]{
    height: 32px;
}

.socials-container a[b-yino8ebkz7]::before{
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-30px) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
}

.socials-container a:hover[b-yino8ebkz7]{
    background-color: var(--accent-color);
    fill: white;
}

.socials-container a[b-yino8ebkz7]::after{
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-color);
    transform: translateY(0) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
}

.socials-container a:hover[b-yino8ebkz7]::before{
    transform: translateY(-65px) rotate(0);
    opacity: 1;
}

.socials-container a:hover[b-yino8ebkz7]::after{
    transform: translateY(-42px) rotate(0);
    opacity: 1;
}
