body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #12181b;
    margin: 0;
    color: aliceblue;
    text-align: center;
    overflow: hidden;
}

header {
    width: 100%;
}

h1 {
    font-weight: 300;
    font-size: 5rem;
}
h2 {
    position: relative;
    font-weight: 200;
    top: -6vh;
}

.text {
    position: relative;
    top: -10vh;
}

article {
    position: absolute;
    top: 50vh;
    background-color: #182024;
    height: 100%;
    width: 98vw;
    border-radius: 30%;
}

article h1 {
    font-size: 2rem;
}

article img {
    border: 4px solid black;
    border-radius: 10%;
}


.logo {
    position: relative;
    width: 15rem;
    left: 0;
    right: 0;
    margin: auto;
}

.logo img {
    width: inherit;
    height: inherit;
}


/* GETTING FANCY */
.logo:has(img:hover) .bg {
    opacity: 65%;
}

.logo .bg {
    position: absolute;
    top: 0;

    content: '';
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;

    z-index: -1;

    background: linear-gradient(135deg, rgba(0,106,255,1) 50%, rgba(0,212,255,1) 50%);
    filter: blur(40px);
    opacity: 50%;
    transition: opacity 0.3s;
}

@keyframes blink {

}

footer {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 2vh;
    height: 5vh;
}

footer img {
    width: 4rem;
    border-radius: 10px;
}

@media only screen and (max-width: 600px) {
    article {
        border-radius: 10%;
    }
}
@media only screen and (max-height: 700px) {
    .logo {
        width: 7rem;
    }
    footer {
        bottom: 4vh;
    }
    footer img {
        backdrop-filter: blur(2px) brightness(0.8) contrast(0.9);
    }
}