/* General */ 

* {
    margin: 0;
    padding: 0;

}

/*html */

html {
    background: #FAF5E9;
    color: #957C3D;
 }
 
/* Navigation Bar */ 

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #002349;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
  
.logo {
    font-size: 32px;
    color: #957C3D;;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #957C3D;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}


.navbar a:hover::before {
    width: 100%;
}


a {
    text-decoration: none;
    transition: .5s;
    color: #fff;
}


ul , li {
    list-style-type: none;
}



         
         
/* Avatar */



img {
    vertical-align: middle;
    horizontal-align: middle;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  
}
  
  
  
  /* Container */
  
.container {
    display: inline-flex;
    flex-direction: column;
    border: 10px solid black;
    align-items: center;
    position: relative;
}

.box {
    width: 150px;
    height: 150px;
    text-align: center;
    
}

#box1 {
    background-color: none;
    width: 100%;
    height: 20%;
    padding: 20px;
}


#box2 {
    padding: 10px; 
    background-color: none;
    width: 100%;
}


#box3 {
    background-color: none;
    text-align: left;
    width: 100%;
}

#box4 {
    background-color: #484848;
    width: 50%;
    padding: 10px;
}

#box5 {
    width: 50%;
    padding: 20px;
    border: 2px solid black;
    margin: 1rem;
    background-color: #F5F5F5;
}

/* Footer */

footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%
    height: 2.5 rem;
    background-color: #002349;
    color: #fff;
    font-size: 18px;
    color: #957C3D;
    font-weight: 500;
    text-decoration: none;
}


.footer_info {
    width: 90%;
    margin: 0;
    display: flex;
    padding: 50px 0;
}

.footer_info , .footer_width {
    padding: 0 15px;
}

.footer_info , h2 {
    margin-bottom: 20px;
}

.about , .contact {
    width: 40%;
}

.link {
    width: 20%;
}

.social-media {
    margin-top: 30px;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: inline-block;
    margin-right: 50px;
    width: 50px;
    height: 50px;
    padding-top: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    text-align: center;
}

.social-media ul li a:hover {
    background-color: #fff;
    color: #000;
}

.link ul li a {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}

.link ul li a:hover{
    color: #000;
}

.contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact ul li span {
    margin-right: 15px;
}


@media screen and (max-width:992px){
    .about , .contact {
        width: 35%;
    }
    
    .link {
        width: 30%;
    }
}

@media screen and (max-width:767px) {
    .about , .contact , .link {
        width: 100%;
    }
    
    .footer_info {
        flex-direction: column;
    }
}