@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden !important;
}

img {
    width: 100%;
}

/* header */
.header {
    width: 100%;
    height: 100vh;
    background-image: url("/bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

header nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    position: relative;
    z-index: 1;
}

header nav .logo {
    width: 45px;
    display: flex;
    gap: 10px;
}

header nav .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header nav .social a {
    font-size: 25px;
    color: #fff;
}

header .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    gap: 20px;
    position: relative;
    z-index: 1;
}

header .content h1 {
    font-weight: bold;
    font-size: 70px;
    background: linear-gradient(90deg, #ff1b6b, #ff1b6b, #42a5f5, #7cc0f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header .content h2 {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    font-family: "Edu AU VIC WA NT Pre", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    word-spacing: 10px;
}

@media (max-width: 991px) {
    header .content h1 {
        font-size: 60px;
    }

    header .content h2 {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    header .content h1 {
        font-size: 40px;
    }

    header .content h2 {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    header .content h1 {
        display: flex;
        font-size: 50px;
        flex-direction: column;
        text-align: center;
        background: linear-gradient(160deg, #ff1b6b, #ff1b6b, #42a5f5, #7cc0f8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    header .content h2 {
        font-size: 20px;
        text-align: center;
        padding: 0 10px;
    }
}

header .email {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    background-color: #202020;
    width: 320px;
    padding: 5px;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
}

header .email input {
    flex: 1;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 5px 10px;
}

header .email input::placeholder {
    color: #a9a9a9;
    font-size: 14px;
}

header .email button {
    background-color: #ff1b6b;
    border: none;
    outline: none;
    border-radius: 7px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
}

header footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    z-index: 1;
}

@media (max-width: 575px) {
    header .email {
        width: 85%;
        padding: 5px 10px;
    }

    header .email input {
        font-size: 14px;
    }

    header .email input::placeholder {
        font-size: 12px;
    }
}


input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* header end */