* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow: hidden;
}


.text-container {
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

h1,h2 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

h1 {
    font-size: 10rem;
    letter-spacing: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 .icon {
    font-size: 3.5rem;
    margin-left: 0.3rem;
    position: relative;
    top: calc(-1rem * (3.5 / 3.5));
}

h2 {
    font-size: 5rem;
    opacity: 0.9;
}

.icon {
    transform: rotate(20deg);
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 1rem 0;
    text-align: center;
    font-size: 4rem;
    color: white;
}

.social-button {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.social-button:hover {
    filter: brightness(75%);
}

@media (max-width: 768px) {
    h1 {
        font-size: 7rem;
        letter-spacing: 4px;
    }

    h1 .icon {
        font-size: 2.5rem;
        top: calc(-1rem * (2.5 / 3.5));
    }

    h2 {
        font-size: 3.5rem;
    }

    footer {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 5rem;
        letter-spacing: 2px;
    }

    h1 .icon {
        font-size: 2rem;
        top: calc(-1rem * (2 / 3.5));
    }

    h2 {
        font-size: 3rem;
    }

    footer {
        font-size: 2rem;
    }
}