@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: rgb(243, 243, 243);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: floralwhite;
    text-decoration: none;
    min-width: 100%;
    box-sizing: border-box;
  }

header {
    margin: 0;
    background: rgb(23, 34, 51, 1);
    padding: 10px 20px;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    display: inline-block;
    margin: 0 20px 0 0;
    font-weight: bold;
}
h1 {
    color: rgb(48, 48, 48);
    font-size: 14px;
    font-weight: bold;
}
a.link {
    color: black;
    text-decoration: none;
}
a.link:hover {
    color: rgb(23, 34, 51, 1);
    text-decoration: underline;
}
/* ANIMATED UNDERLINE HOVER START*/
.navbar {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    
    display: inline-block;
    padding: 5px 20px;
    position: relative;
  }
.navbar:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
.navbar:hover:after { 
    width: 100%; 
    left: 0; 
  }
 /* ANIMATED UNDERLINE HOVER END*/   

 /* IMAGE OVER START*/
.a-img img {
  transition: .3s ease;
}
.a-img img:hover{
  box-shadow: 0 0 0 5px rgb(23, 34, 51, 1);
  transition: .3s ease;
}
 /* IMAGE OVER END*/

section { 
   color: black;
   width: 100%;
}