* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

.homepage-text {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 400;
    color: #000000;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1;
    user-select: none;
}

@media (max-width: 768px) {
    .homepage-text {
        font-size: clamp(2.5rem, 15vw, 6rem);
    }
}

@media (max-width: 480px) {
    .homepage-text {
        font-size: clamp(2rem, 18vw, 4rem);
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .homepage-text {
        font-size: clamp(2rem, 8vh, 4rem);
    }
}