* {
    box-sizing: border-box;
}

 body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Corbel Light";

    background:
        radial-gradient(circle at 80% 40%,
            rgba(0, 0, 0, 0.341) 0%,
/*             rgba(62, 53, 157, 0.1) 25%,
            rgba(24, 24, 69, 0.668) 45%, */
            rgba(17, 16, 48, 0.668) 70%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        radial-gradient(circle at 20% 60%,
            rgba(0, 0, 0, 0.05) 0%,
/*             rgba(27, 122, 156, 0.15) 25%,
            rgba(32, 31, 76, 0.668) 45%, */
            rgba(20, 20, 63, 0.668) 70%,
            rgba(0,0,0,0.90) 100%
        ),
        #000000;
 
    background-size: 160% 160%, 180% 180%, auto;

    animation: moveGlow 18s ease-in-out infinite alternate;
}

@keyframes moveGlow {
    0% {
        background-position: 80% 40%, 20% 60%, 50% 50%;
    }
    50% {
        background-position: 75% 35%, 25% 65%, 50% 50%;
    }
    100% {
        background-position: 80% 40%, 20% 60%, 50% 50%;
    }
} 

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.header {
    display: flex;
    min-height: 150px;
    gap: 10px;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.title {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 5px;
}

.overlay {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 80% 40%,
            rgba(0, 0, 0, 0.341) 0%,
            rgba(62, 53, 157, 0.1) 50%,
            rgba(107, 112, 210, 0.386) 75%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        radial-gradient(circle at 20% 60%,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(27, 122, 156, 0.15) 50%,
            rgba(46, 45, 124, 0.668) 75%,
            rgba(0,0,0,0.90) 100%
        ),
        #000000; /* deep teal base */
} 

.icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.icon:hover {
    opacity: 0.8;
}

.footer {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.logo img {
    height: 60px;
    width: auto;
}

@media (max-width: 500px) {
    .header{
        min-height: 100px;
    }

    .logo img {
    height: 20px;
    width: auto;
    }

    h1 {
        margin-bottom: 5px;
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .footer {
        min-height: 100px;
        font-size: 0.7rem;
    }

    .title {
        font-size: 1rem;
    }

}
