*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#main{
    height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
    position: relative;
}

#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
    padding: 0 2rem;
}

#nav > img{
    width: 13rem;
    cursor: pointer;
}

#nav-links{
    display: flex;
    align-items: center;
    gap: 2rem;
}

#nav > #nav-links > a{
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
}

#nav > #btn{
    display: flex;
    align-items: center;
    gap: 1rem;
}

#nav > #btn :nth-child(1){
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    padding: .8rem .5rem;
}

#nav > #btn :nth-child(2){
    background-color: white;
    padding: .8rem 1.1rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
    cursor: pointer;
}

#hero-Section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

#hero-Section > h2{
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 6.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#hero-Section > h2 > span{
    font-size: 1.2rem;
    background-color: brown;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
}

#hero-Section :nth-child(4){
    position: absolute;
    height: 15rem;
    top: 18%;
    left: 7%;
    border-radius: 20px;
    cursor: pointer;
}

#hero-Section :nth-child(5){
    position: absolute;
    height: 15rem;
    width: 11rem;
    bottom: 18%;
    right: 7%;
    border-radius: 20px;
    cursor: pointer;
}

#scroll-btn{
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50% , 0);
    padding: .5rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    background-color: transparent;
    color: white;
    outline: none;
    border: none;
    cursor: pointer;
}

@media (max-width:1000px) {
    
    *{
        font-size: 40%;
    }

    #scroll-btn{
        bottom: 13%;
        font-size: 2rem;
    }

    #hero-Section :nth-child(4){
        height: 20rem;
        width: 16rem;
    }
    
    #hero-Section :nth-child(5){
        height: 20rem;
        width: 16rem;
        bottom: 22%;
    }
}