html,
body {
    width: 100%;
    height: 100vh;
    color: var(--secondery-text-color);
    background-color: var(--bg-color);
}

main {
    text-align: center;
    flex-direction: column;
    gap: 50px;
    padding: 30px;
    width: 100%;
    height: 100%;
}

main .container {
    flex-direction: column;
    gap: 30px;
}

main .container .logo {
    width: 200px;
    height: auto;
}

main .container h1 {
    font-size: clamp(2rem, 2vw, 2.7rem);
    font-weight: 700;
}

.glow-effects {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.glow-effects .glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(150px);
    background: var(--primary-color);
    box-shadow:
        0 0 250px var(--primary-color),
        0 0 250px var(--primary-color),
        0 0 191.52px var(--primary-color),
        0 0 54.72px var(--primary-color),
        0 0 27.36px var(--primary-color);
    pointer-events: none;
    opacity: 0.9;
    z-index: 2;
}

@media (min-width: 768px) {
    main .container .logo {
        width: 370px;
    }

    .glow-effects .glow {
        width: 250px;
        height: 250px;
    }
}