@font-face {
    font-family: 'Graun';
    src: url('fonts/Graun.otf') format('opentype');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Graun', sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    padding-top: 5vh;
}

.logo {
    max-width: 280px;
    width: 200%;
    height: auto;
    margin-bottom: 1rem;
    margin-top: -5vh;
}

@keyframes dotAnimation {
    0%, 100% { content: ''; }
    33% { content: '.'; }
    66% { content: '..'; }
    99% { content: '...'; }
}

h1 {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
    position: relative;
}

h4 {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: normal;
    opacity: 0.8;
}

h1::after {
    content: '';
    position: absolute;
    animation: dotAnimation 2s infinite;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    transition: all 0.2s ease;
    text-decoration: none;
    opacity: 0.9;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .social-icons a:hover {
        transform: scale(1.1);
        opacity: 1;
    }
}

.social-icons a:active {
    transform: scale(1.1);
    opacity: 1;
}

@media (min-width: 768px) {
    .logo {
        max-width: 400px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .social-icons a {
        font-size: 1.8rem;
    }

    body {
        padding-top: 5vh;
    }
}
