/*Navbar Transfer IMPORTANT!*/
header, body, footer{
    margin:0;
}

.container{
    font-weight: 600;
    width: 80%;
    margin: 0 auto;
}
.topnav {
    background-color:lightpink;
    overflow: hidden;
  }
  
.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Rubik',sans-serif;
  }
.topnav a:hover {
    background-color: teal;
    color: lightpink;
  }
  
.active {
    background-color:turquoise;
    color: white;
  }
  
.topnav .icon {
    display: none;
  }
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
    float: right;
    display: block;
    }
  }
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
    float: right;
    display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    }
    .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    }
  }
/*Navbar Transfer IMPORTANT!*/
*{
margin: 0;
padding: 0;
}
.section{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content:center;
  overflow: hidden;
}
.section h1{
  position: absolute;
  text-align: center;
  font-size: 6rem;
  font-family: 'Pacifico', cursive;
  z-index: 1;
  padding: 20px;
  margin: 15px;
  color: navy;
  opacity: .9;
}
.imgcontainer{
  position: fixed;
  width: auto;
  z-index: -1;
}
.coloroverlay{
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(132, 224, 255, 0.438);
  width: 100%;
  height: 100%;
}
/*About Section*/
.aboutcontainer{
  display: flex;
  background: whitesmoke;
  padding: 40px;
  margin-bottom: 10%;
}
.abt{
  background-color: whitesmoke;
  text-align: center;
  font-family: 'Pacifico',sans-serif;
  font-size: 4rem;
  color: navy;
  margin-top: 100px;
}
.K2{
  width: 25%;
  height: auto;
  float: left;
  border-radius: 100%;
  padding: 10px 10px;
}
.K_abt{
  font-family: 'Roboto', sans-serif;
  text-align: center;
  width: 30%;
  background: turquoise;
  height: auto;
  border-radius: 5px;
  margin-left: 10%;
  box-shadow: 5px 5px 5px rgba(7, 7, 7, 0.438);
}
.A1{
  width: 25%;
  height: auto;
  float: right;
  border-radius: 100%;
  padding: 10px 10px;
}
.A_abt{
  font-family: 'Roboto', sans-serif;
  text-align: center;
  width: 30%;
  background: turquoise;
  height: auto;
  border-radius: 5px;
  margin-left: 20%;
  box-shadow: 5px 5px 5px rgba(7, 7, 7, 0.438);
  padding: 10px 10px;
}
/*End Of About*/
.footercontainer{
  overflow: hidden;
  background: teal;
  color: lightblue;
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.footer{
  text-align: center;
}
.CopyR{
  font-family: 'Rubik',sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
}
hr{
  overflow: hidden;
  margin-left: 15%;
  margin-right: 15%;
}
footer hr{
  margin-top: 10px;
  margin-left: 25%;
  margin-right: 25%;
}
.hrlast{
  margin-top: 15px;
  margin-left: 30%;
  margin-right: 30%;
}
.bottomul{
  font-size: 20px;
  font-family: 'Rubik',sans-serif;
}
.f_li{
  list-style: none;
  color: whitesmoke;
}
.f_li a{
  color: whitesmoke;
}
footer li{
  margin: 10px;
}
a:hover{
  color: turquoise;
}
a:link{
  text-decoration: none;
}
.contact{
  font-family: 'Rubik',sans-serif;
  font-size: 18px;
  padding-top: 10px;
}
.contact p{
  padding-top: 10px;
}
.contact p:hover{
  color: whitesmoke;
}
.social_f{
  font-size: 22px;
  font-family: 'Roboto',sans-serif;
  float: right;
  margin-top: -140px;
  margin-right: 30px;
}
.social_f i{
  background-color: lightblue;
  font-size: 30px;
  padding: 5px 7px;
  border-radius: 50%;
}
.social_f a{
  color: teal;
}
.social_f i:hover{
  color: slateblue;
}
@media only screen and (max-width: 600px){
  .section h1{
    font-size: 4rem;
    opacity: .9;
  }
  .social_f{
    font-size: 18px;
    margin-right: 10px;
  }
  .social_f i{
    font-size: 26px;
  }
  .K2{
    width: 80%;
  }
  .A1{
    width: 80%;
  }
}
@media screen and (max-width: 360px) and (min-width: 320px){
  .social_f {
    font-size: 18px;
    margin-right: 10px;
    margin-top: -130px;
}
  .K_abt{
    width: auto;
    margin-left: 0;
  }
  .A_abt{
    width: auto;
    margin-left: 10%;
  }
}