html, body {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: rgb(0, 0, 0);
    width: 100%;
    min-height: 100vh;
    font-family: 'Quicksand', sans-serif;
    overflow-y: auto;
    flex-direction: column;
    color: white;
    text-align: center;
}
@keyframes moveUp {
    from {
      top: 50%;
      transform: translate(-50%, -50%);
    }
    to {
      top: 30px;
      transform: translate(-50%, 0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.somtig {
    font-size: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: moveUp 1s cubic-bezier(0.45, 0, 0.55, 1) 1s forwards;
    z-index: 2;
}
.box {
    position: relative;
    display: flex;
    flex-direction: column;
    filter: blur(3px) brightness(70%);
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1s forwards;
}
.box2 {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 92vw);
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 2s forwards;
}
.row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 2s forwards;
}
.row img {
    height: 300px;
    width: auto;
    max-width: 90vw;
    object-fit: cover;
    border-radius: 6px;
}