@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Potta+One&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Secular One', sans-serif;
}

/* SCROLLBAR */
html {
    scroll-behavior: smooth;
    scrollbar-color: gold black;
    scrollbar-width: normal;
    background-color: white;
}

html::-webkit-scrollbar {
    width: 0.5vw;
}

html::-webkit-scrollbar-thumb {
    background-color: rgb(36, 35, 35);
    border-radius: 0px;
}

html::-webkit-scrollbar-track {
    background-color: black;
}

body {
    overflow-x: hidden;
}

/* CSS CODE FOR NAVBAR SECTION */
nav {
    position: fixed;
    height: 80px;
    width: 100%;
    background-color: black;
    color: white;
    z-index: 1000;
    overflow-y: hidden;

}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

#click {
    display: none;
}

.navbar ul li {
    font-size: 30px;
    margin: 20px;
    transition: 0.5s;
}

.navbar ul li:hover {
    font-size: 40px;
    transition: 0.5s;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
}

.navbar ul li a:active {
    color: gold;
}

.navbar .menu-btn i {
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#click:checked~.menu-btn i:before {
    content: "\f00d";
}

/* RESPONSIVE CODE FOR NAVBAR SECTION */
@media (max-width: 1200px) {
    nav {
        justify-content: center;
    }

    .navbar ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: black;
        height: 100vh;
        width: 100%;
        display: block;
        transition: 0.5s ease;
    }

    #click:checked~ul {
        left: 0%;
        text-align: center;
    }

    .navbar ul li {
        margin: 40px 0;
        color: white;
    }

    .navbar ul li:hover {
        font-size: 40px;
        transition: 0.5s;
        color: black;
    }

    .navbar .menu-btn i {
        display: block;
        position: fixed;
        top: 30px;
        right: 70px;
    }
}


/* CSS CODE FOR LOGO */
.logo {
    height: 80px;
    width: 150px;
    position: fixed;
    top: 0px;
    left: 0px;
    color: white;
    z-index: 1000;
    text-align: center;

}

.logo i {
    font-size: 30px;
    transition: 0.5s;
    margin-top: 15px;
}

.logo i:hover {
    font-size: 40px;
    transition: 0.5s;
}

.logo .fa-gear {
    color: gold;
    font-size: 40px;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 50px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

section {
    height: 100vh;
    width: 100%;
    background-color: black;
    overflow-X: hidden;
    overflow-y: hidden;
    background-image: url('../images/headphone.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.container {
    height: 100vh;
    width: 100%;
    text-align: left;
    position: relative;
    top: 100px;
    background: transparent;
}

.container h1 {
    font-size: 30px;
    color: white;
    position: relative;
    top: 50px;
    left: 50px;
}

.container p {
    color: white;
    position: relative;
    top: 100px;
    left: 50px;
    font-size: 20px;
}

@media (max-width:550px) {

    section {
        height: 150vh;
    }

    .container {
        width: 80%;
    }
}