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

img{
    max-width: 100%;
    height: auto;
}

/* Additional reset styles can be added here */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}



html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #111111;
    color: #fff;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo{
    width: 6rem;
    margin: 8rem 0 2rem 0;
}

h1{
    font-size: 2.4rem;
}

.sites{
    margin: 4rem 1rem;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 2rem;
    text-align: center;
    max-width: 46rem;
}

.site{
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.site:hover{
    transform: scale3d(1.05, 1.05, 1) translate3d(0, -0.5rem, 0);
    transition: transform 0.1s ease-out;
}

.site:hover ~ a{
    opacity: 0.5;
}
.site:has(~ a:hover){
    opacity: 0.5;
}

.upcoming{
    pointer-events: none;
    opacity: 0.8;
    filter: grayscale(1);
}
.upcoming::after{
    content: "Coming soon!";
    box-sizing: border-box;
    position: absolute;
    top: 54%;
    left: 0;
    width: 100%;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    z-index: 1;
}

.sites img{
    border-radius: 0.5rem;
}

.sites h3{
    margin-top: 1rem;

}

footer {
    flex-shrink: 0;
}
