/* Google Font */

/* Background image styles*/
html, body {
    height: 100%;
    margin: 0;
    display: flex; 
    flex-direction: column;
}
body {
    background-image: url('../images/bgimg2.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    margin: 0;
}
/*Header styles */
header {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* navbar styles */
.portfolio {
    color: rgba(228, 228, 228, 0.8);
    margin-top: 20px;
    font-size: 60px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
  
}

/* Navbar items styles */
.navbar-toggler {
   background-color: rgba(228, 228, 228, 0.8);
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.navbar-nav {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}
.nav-link {
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 15px;
}
/* Main content styles */
.container {
    background-color: rgba(186, 226, 199, 0.8);
    flex-grow: 1;
    margin: auto;
    padding-top: 40px;
}
/*Center the text */
h1 {
    display: flex;
    justify-content: center;
    font-family: 'Playfair Display', serif;
}
/*text styles */
.text  {
  font-size: 22px;
  font-family: 'Playfair Display', serif;

}

/* Footer styles */

.social-networks {
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    background-color: #000;
    margin: 0;
    position: relative;
    width: 100%;
    bottom: 0;
  }
  .social-networks i {
    font-size: 160%;
    padding: 5%;
    color: #fff
  }
  .social-networks i:hover {
    color: #02f57b
  }
  /* Contact form styles */
  .me {
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
  }
  .contact {
    text-decoration: underline;
  }

  /* Media queries */
  @media screen and (max-width: 768px) {
    .container {
    width: 100%;
    margin: 0;
    padding-bottom: 40px;
  }
  .text  {
    font-size: 22px;
  }
  .navbar {
    display: flex;
    justify-content: center;
  }
  .nav-link {
    font-size: 18px;
  }
}
/* Contact image styles */
.letter {
display: flex;
justify-content: center;
}


  @media screen and (min-width: 768px) {
    .container {
      max-width: 700px;
      margin: 40px auto;    
    }
  .social-networks {
    margin-top: 40px;
  }
  }