.wrapper {
    width: 100%;
    height: auto;
    background-color: #0F0F0F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1000;
}

.center-logo .logo {
    width: 100px;
    height: 100px;
}

/* responsive */
/* @media screen and (max-width: 768px) {
    .wrapper .main {
        gap: 50px;
    }

    .main .section {
        gap: 25px;
    }
} */

/* for tablets */
/* @media screen and (max-width: 1024px) {
    .wrapper .header {
        gap: 25px;
        padding: 25px;
    }
} */