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

html{
    font-family: Arial, Helvetica, sans-serif;
}

body{
    height: auto;
}

header{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9899999999999;
    width: 100%;
    height: 80px;

    .header-content{
        display: flex;
        max-width: 70%;
        width: 100%;
        justify-content: space-between;


        .logo{
            font-size: 1.3rem;
            font-weight: 600;
            text-wrap: nowrap;
            color: white;
        }
        
        .nav-links{
            display: flex;
            gap: 6rem;
            list-style-type: none;
            color: white;
            li a{
                position: relative;
                font-weight: 300;
                color: white;
                font-size: 22px;
                
            }
        }
    
        #menu-icon{
            font-size: 2rem;
            display: none;
            cursor: pointer;
            color: white;
        }
    }
    
    
}

.nav-links-open{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    position: fixed;        
    top: 0;
    width: 100vw;           
    height: 100vh;         
    gap: 1.5rem;
    background-color: black;
    z-index: 9999999999999;            
    padding: 2rem;
    border-radius: 0;
    display: none;

    .fa{
        font-size: 5rem;
        color: white;
        cursor: pointer;
        top: 20px;
        right: 50px;
        position: absolute;
    }

    .nav-links{
        display: flex;
        gap: 3rem;
        flex-direction: column;
        color: white;
        
        li a{
            
            position: relative;
            color: white;
            font-weight: 300;
            font-size: 2.5rem;
            
        }
    }

    &.active{
        display: flex;
    }
}

.slideshow-container{
    position: relative;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    .mySlides{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: 0.5s;

        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    }
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: .4;
    }
    to {
        opacity: 1;
    }
}

.textBox-container {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;

    .textBox-content{
        max-width: 70%;
        width: 100%;
        display: flex;
        justify-content: center;

        .textbox1, .textbox2{
            width: 50%;
            display: flex;
            flex-direction: column;
            color: white;

            h1{
                font-size: 3rem;
                font-weight: 400;
                margin-bottom: 3rem;
            }

            p{
                font-size: 1.1rem;
                font-weight: 300;
                margin-bottom: 1rem;
                line-height: 1.7;
            }
        }
    }
}



@media screen and (max-width: 768px) {

    header{
        .header-content{
            .nav-links{
            display: none;
        }

        #menu-icon{
            display: block;
        }
    }

}

    .textBox-container {

        .textBox-content {
            width: 100%;
            flex-direction: column;
            align-items: center;
         
            .textbox1 {
                width: 100%;
            }
         
            .textbox2 {
                display: none;
            }
        }
    }
         
}