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

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Hanken Grotesk', Arial, sans-serif;
    overflow: hidden;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colors-gray0);
    z-index: 1;
    pointer-events: none;
}

.hello-wrapper {
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}

.overlay-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../overlay.avif);
    filter: blur(20px);
    opacity: .35;
    z-index: 1;
    pointer-events: none;
}

.home {
    min-height: 100vh;  
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-wrapper {
    text-align: center;
}

.text-container {
    max-width: 500px;
    margin-bottom: 20%;
    text-align: center;
    padding: 2em 1em 2em 1em;
    border-radius: 20px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1;
    position: absolute;
    top: 47.5%;
    left: 50%;
    user-select: none;
}

figure {
    transform: translateX(-50%) translateY(-50%);
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: absolute;
    opacity: 0;
}

.dark .text-container {
    background-image: linear-gradient(45deg, rgba(30, 30, 30, 0.5), rgba(40, 40, 40, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.text1, .text2, .text3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--colors-gray12);
    user-select: none;
    -webkit-user-select: none;
}

.highlight1, .highlight2, .highlight3 {
    border-radius: 10px;
    padding: 3px 6px;
}

.highlight1 {
    background-color: #60c5bb;
}

.highlight2 {
    background-color: #fc5650;
}

.highlight3 {
    background-color: #b087ff;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}


@media (max-width:600px) {
    .text1, .text2, .text3 {
        font-size: 24px;
    }

}
