body{
    margin: 0;
    padding: 0;
}
.navbar{
    background-color: #2e2e2e;
    color: white;
    display: flex;
    height: 15vh;
    width: 100vw;
    align-items: center;
    position: fixed;
    top: 0;
}
.logo{
    height: 85%;
    width: 25%;
    padding: 1%;
}
.center-navbar{
    display: flex;
    height: 85%;
    width: 70%;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    text-decoration: none;
}
.nav-link{
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}
.nav-link:hover{
    text-decoration: underline;
    text-underline-offset: 1rem;
  text-decoration-color: rgb(0, 129, 209);
  color: rgb(0, 129, 209) ;
}
.nav-link:active{
  text-decoration-color: rgb(0, 129, 209);
  color: rgb(0, 129, 209) ;
}
section{
    padding-top: 16vh;
    height: 100vh;
}

#home{
    background-color: whitesmoke;

    width: 80vw;
    margin-left: 10vw;
}
#about{
    background-color: whitesmoke;
    width: 80vw;
    margin-left: 10vw;
}
#contact{
    display: flex;
  justify-content: center;
  flex-direction: column;
}
.section-heading{
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
ul{
    list-style-type: square;
}
li{
    line-height: 4vh;
    font-size: 25px;
    margin-top: 25px;
}
footer{
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.contact-info-upper-container {
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    background: (250, 250, 250);
    margin: 2rem auto;
    padding: 0.5rem;
  }
  
  .contact-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
  }
  
  .contact-info-container p {
    font-size: larger;
  }
  
  .contact-icon {
    cursor: default;
  }
  
  .email-icon {
    height: 2.5rem;
  }
  .title {
    font-size: 3rem;
    text-align: center;
  }
  @media screen and (max-width: 800px){
    .navbar{
      height: 12vh;
    }
    .nav-link{
      font-size: 20px;
    }
    li{
      font-size: small;
      margin-top: 5px;
    }
    section{
      height: fit-content;
      margin: 0 5%;
      padding-top: 12vh;
      
    }
    .section-heading{
      font-size: 20px;
      margin: 0.5%;
    }
    .contact-info-container {
      margin: 0;
    }
    .contact-info-container p,
    .nav-links li a {
      font-size: 1rem;
    }
  }
  