*{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    font-family:sans-serif,verdana;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url(images/bg-3.gif);
    color: white;
}

.navbar-title{
    margin: .5rem;
    font-size: 35px;
    font-weight: bold;
    color: white;
    padding: 0 100px;
    line-height: 80px;
    cursor: pointer;

}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 20px;
} 

.navbar-links li{
    list-style: none;
}

.navbar-links li a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid transparent; 
    padding: 7px 30px;
    border-radius: 3px
}

.navbar-links li:hover{
   border: 1px solid transparent;
   transition: .5s;
}

.toggle-button{
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar{
    height: 3px;
    widows: 100%;
    background-color: white;
    border-radius: 10px;
}
@media (max-width: 620px){
    .toggle-button{
        display: flex;
    }
    
    .navbar-links{
        display: none;
        width: 100%;
        background: transparent;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-links ul{
        width: 100%;
        flex-direction: column;
    }
    
    .navbar-links{
        text-align: center;
    } 
    
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    
    .navbar-links.active {
        display: flex;
    }
}


section{
    background: url(images/bg2.jpg);
    background-size: cover;
    min-height: calc(100vh - 80px);
    opacity: inherit;
    padding-top: 20px;
}

.about{
    width: 100%;
    /*height: 100vh;*/
    background: #161922;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .content{
    height: auto;
    width: 600px;
    max-width: 100%;
}

.text{
    width: 550px;
    max-width: 100%;
    padding: 0 10px;
}

.content{
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: block;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-around;
}

.text hi{
    color: #ffcc74;
    font-size: 85px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.text hi{
    color: #ffffff;
    font-size: 85px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
