* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "TT Octosquares Trl Cnd", sans-serif;
    color: #fff;
}

body {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    color: #000;
    overflow-x: hidden;
}

.main {
    background-image: url(../assets/img/bg.avif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
    margin-top: 40px;
}

::-webkit-scrollbar-thumb {
    background: #3FD62B;
    border-radius: 12px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

h1,
h2,
h3,
h4,
button {
    text-transform: uppercase;
    text-align: center;
}

a {
    text-decoration: none;
}