* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.nav {
    width: 100%;
    height: 80px;
    display: flex;
    top: 0;
    z-index: 999;
    position: sticky;
    background-color: #141414;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-container {
    display: flex;
    width: 100%;
    height: 80px;
    max-width: 1300px;
    justify-content: space-between;
    z-index: 1;
    margin: 0 auto;
    padding: 0 50px;
}

#nav-logo {
    font-size: 2rem;
    display: flex;
    background-color: #ff8177;
    background-size: 100%;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
}

.fa-gem {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    text-align: center;
    list-style: none;
}

.nav-items {
    height: 80px;
}

.nav-links {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0 1rem;
    transition: all 0.3 ease-in;
}

.nav-links:hover {
    color: #ff8177;
    transition: all 0.3 ease-in;
}

@media screen and (max-width: 960px) {
    .nav-container {
        display: flex;
        width: 100%;
        height: 80px;
        max-width: 1300px;
        justify-content: space-between;
        z-index: 1;
        padding: 0;
    }

    .nav-menu.active {
        background: #131313;
        top: 100%;
        opacity: 0.8;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }
}

.contact {
    background-color: #131313;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact h1 {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 5rem;
    margin-top: 4rem;
    font-size: 4rem;
    transition: all 0.3s ease-in-out;
}

.contact h1:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
}

.contact-card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 90%), url(tiktok.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.contact-card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 90%), url(whatsapp.jpg);
}

.contact-card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 90%), url(yt.jpg);

}

.contact-card:nth-child(4) {
    background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 90%), url(facebook.jpg);
}

.contact-card h2 {
    position: absolute;
    top: 370px;
    left: 30px;
}

.contact-card button {
    position: absolute;
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: #f77062;
    top: 410px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

@media screen and (max-width: 960px) {
    .contact {
        height: auto;
    }

    .contact h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }

    .contact-container {
        width: 300px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact h1 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .contact {
        height: auto;
    }

    .contact h1 {
        font-size: 3rem;
        margin-top: 8rem;
    }

    .contact-card {
        width: auto;
    }
}