@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    resize: none;
    text-decoration: none;
    box-sizing: border-box;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    font-family: "Knewave", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

#preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
}

#preloader .logo {
    width: 128px;
    height: 128px;
    border-radius: 15px;
}

#preloader .text-wrapper {
    font-weight: bold;
    color: #000000;
    font-size: 70px;
    text-align: center;
}

@media (max-width: 768px) {
    #preloader .logo {
        width: 64px;
        height: 64px;
    }

    #preloader .text-wrapper {
        font-size: 25px;
    }
}