* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    max-width: 2000px;
    height: 100%;
    background-color: black;
}

.wrapper {
    background: linear-gradient(
        to bottom,
        rgba(100,100,90,0.8),
        rgba(10,20,50,0.9)
    ),
    url(images/wavepat.png) no-repeat center center;
}

.header{
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.header .logo{
    width: 100px;
}

.header .right-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-nav .nav-bar{
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.right-nav .nav-bar li{
    float: left;
}

.right-nav .nav-bar li a{
    align-items: center;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    color: white;
}

.right-nav .nav-bar li a:hover{
    color: #0d172f;
}

.main-content {
    max-width: 1400px;
    height: 80%;
    margin: auto;
}

.footer{
    height: 10%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;

}

.footer .fa{
    font-size: 30px;
    width: 30px;
    text-decoration: none;
    border-radius: 50%;
    color: white;
}
.footer .fa:hover{
    color: #4c4d46;
}

.slide-comp{
    width: 100%;
    height: 40%;
}


.slide-img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.main-content h2{
    height: 10%;
    color: white;
    text-align: center;
    align-content: center;
    padding: 20px;
}

.static-flex-wrapper{
    height: 50%;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.about-comp{
    width: 100%;
    height: 100%;
}


.static-image{
    border-radius: 10px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.about-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 20px;
}

.about-content{
    width: 30%;
    height: 100%;
    align-content: center;
    text-align: center;
    margin: auto;
    outline: 1px solid black;
    border-radius: 5px;
    background-color: #4c4d46;
}

.about-content p{
    height: 100%;
    width: 100%;
    text-align: center;
    align-content: center;
    color: white;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

.about-slides{
    width: 70%;
    height: 100%;
}

.about-comp{
    width: 100%;
    height: 100%;
}

.about-img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
