@font-face {
    font-family: "pp";
    src: url(./pp-bold.ttf);
}

@font-face {
    font-family: "neue machina";
    src: url(./NeueMachina-Regular_DQCmjH1st.ttf);
}

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

html,
body {
    width: 100%;
    background-color: #090909;
    height: 100%;
}

html::selection {
    background-color: white;
    color: black;
}

html::-webkit-scrollbar {
    display: none;
}

main {
    width: 100%;
    height: 100%;
}

main section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

main .top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    font-family: neue machina;
    color: white;
    left: 0;
    z-index: 11;
}

main .top nav {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 20px;
    letter-spacing: 2px;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

main .top nav a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 150px;
    background-color: #090909;
    z-index: 12;
}

main .top .content {
    position: absolute;
    width: 100%;
    font-family: pp;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 7rem;
    font-weight: 900;
    font-size: 4rem;
}

main .top .content .f {
    transform: translateX(100px);
}

main .top .content .s {
    transform: translateX(-10px);
}

main .top .content .box {
    display: flex;
    justify-content: center;
    align-items: center;
}

main .top .content .box .text {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 100;
    align-items: flex-start;
    flex-direction: column;
    display: flex;
    font-family: neue machina;
    font-size: 1.22rem;
}

main .top .content .t {
    transform: translateX(100px);
}

button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.066);
    border-radius: 12px;
    opacity: 1;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-align: center;
    font-weight: 100;
    font-family: "neue machina";
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

main .top footer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    font-family: neue machina;
}

@media (max-width: 600px) {
    main .top .content {
        font-size: 1rem;
        line-height: 2rem;
    }

    main .top nav a {
        padding: 5px 7px;
        font-size: 9px;
    }

    main .top .content .f {
        transform: translateX(-10px);
    }

    main .top .content .t {
        transform: translateX(40px);
    }

    main .overlay {
        width: 50%;
        height: 20%;
    }

    main .top .content .box .text {
        font-size: 10px;
    }

    main .top nav {
        top: 20px;
        left: 20px;
        font-size: 10px;
    }

    main .top footer p {
        font-size: 8px;
    }

    main .top button {
        padding: 5px 10px;
        margin-top: 1rem;
        border-radius: 12px;
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    main .top .content .box .text {
        font-size: 8px;
    }

    main footer p {
        font-size: 7px;
    }

}