* {
  padding: 0px;
  margin: 0px;
  font-family: "sans-serif", poppins;
}

/* Navbar */

nav {
  width: 100%;
  height: 12vh;
  background-color: rgb(224, 222, 222);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav1 {
  width: 15%;
  display: flex;
  justify-content: center;
}
.nav1 h1 {
  font-weight: lighter;
  letter-spacing: 3px;
  font-size: 25px;
}
.nav2 {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
.nav2 a {
  text-decoration: none;
  color: rgb(123, 121, 121);
  font-size: 18px;
  font-weight: lighter;
  padding: 5px;
  cursor: pointer;
}
.nav2 a:hover {
  box-shadow: 0px 0px 5px turquoise;
}
.nav3 {
  width: 15%;
  display: flex;
  justify-content: space-evenly;
  padding-right: 15px;
}
.nav3 a{
  color: rgb(84, 83, 83);
}
.nav3 i {
  font-size: 20px;
}
.nav3 i:hover {
  color: rgb(46, 200, 184);
}

/* Home */

.home{
    width: 100%;
    height: 88vh;
    position: relative;
}
.home img{
    width: 100%;
    height: 100%;
}
.hometxt{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 3%;
    left: 22%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.hometxt h1{
    font-size: 45px;
}
.hometxt p{
    font-size: 30px;
    color: gray;
}
.hometxt button{
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    background-color: rgb(48, 184, 170);
    color:white;
    font-weight: bold;
}
.hometxt button:hover{
    background-color: turquoise;
}

/* Footer */
footer{
    background-color: rgb(224, 222, 222);
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
footer p{
    font-size: 17px;
    color: gray;
}
footer strong{
    color:rgb(67, 183, 172);
}

footer a{
  text-decoration: none;
}

footer i{
    font-size: 20px;
    background-color: transparent;
    border: 1px solid gray;
    padding: 9px;
    color: gray;
    border-radius: 50%;
}
footer i:hover{
    color: rgb(53, 182, 169);
    border: 1px solid rgb(53, 204, 189);
}