* {
  margin    : 0;
  padding   : 0;
  box-sizing: border-box;
}

/*  */


.navbar {


  width          : 100%;
  background     : rgb(0, 0, 0);
  color          : rgb(255, 255, 255);
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.mainMenu {
  display   : flex;
  list-style: none;
}

.link {
  font-family    : Arial, sans-serif;
  border-radius  : 2.75px;
  display        : inline-block;
  padding        : 15px;
  text-decoration: none;
  text-transform : uppercase;
  color          : rgb(255, 255, 255);
  font-size      : 18px;
  transition     : 0.2s ease;
}

.link:hover {
  background: rgb(255, 255, 255);
  color     : rgb(0, 0, 0);
}

.openMenu {
  font-size: 2rem;
  margin   : 20px;
  display  : none;
  cursor   : pointer;
}

.mainMenu .closeMenu,
.icons i {

  font-size: 2rem;
  display  : none;
  cursor   : pointer;
}

.fa-facebook:hover {
  color: rgb(0, 110, 255);
}

.fa-twitter:hover {
  color: rgb(86, 154, 243);
}

.fa-instagram:hover {
  color: rgb(255, 0, 191);
}

.fa-github:hover {
  color: rgb(255, 123, 0);
}

@media (max-width: 800px) {


  .mainMenu {
    height         : 50vh;
    position       : fixed;
    top            : 0px;
    right          : 0px;
    left           : 0px;
    z-index        : 10;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    color          : #fff;
    background     : rgb(0, 0, 0);
    transition     : top 1s ease 0s;
    display        : none;
  }

  .mainMenu .closeMenu {
    display : block;
    position: absolute;
    top     : 20px;
    right   : 20px;
  }

  .openMenu {
    display: block;
  }

  .link:hover {
    background-color: #fff;
    color           : rgb(0, 0, 0);
  }

  .icons i {
    display: inline-block;
    padding: 12px;
  }

}

.logo_img {
  margin-left  : 5px;
  width        : 4rem;
  border-radius: 5.75px;
  height       : 50px;
}

.dropdown {
  background-color: #000;
  color           : #fff;
}

.dropdown:hover {
  background-color: #fff;
  color           : #000;
}

/*  */
.heading {

  width           : 100%;
  height          : 5rem;
  background-color: rgb(152, 5, 155);
  display         : grid;
  place-items     : center;
}

.Heading {
  font-size     : 2.5rem;
  text-transform: uppercase;
  font-family   : 'Courier New', Courier, monospace;
  letter-spacing: 0.5rem;
  word-spacing  : .2rem;
  color         : rgb(255, 255, 255);
  font-weight   : bold;
  border-bottom : 6px solid #fff;
  padding-left  : 4.547px;
  border-radius : 25px;
  box-shadow    : 3px 3px 2px rgb(0, 0, 0);
}

.first {

  display       : flex;
  flex-direction: row;
  width         : 80%;
  margin        : 2rem auto;
}

.first_project {
  width      : 50%;
  display    : grid;
  place-items: center;
}

.heart {
  width        : 90%;
  height       : 100%;
  border       : 5px solid rgb(255, 99, 125);
  border-radius: 25px;
}

.first_des {
  font-size : 1.5rem;
  width     : 50%;
  text-align: center;
}

.source {
  color       : blue;
  font-family : 'Courier New', Courier, monospace;
  cursor      : pointer;
  font-size   : 2rem;
  padding-left: 2rem;
}

.source a {
  text-transform : uppercase;
  text-decoration: none;
}

.second {
  display: flex;
  width  : 80%;
  margin : 5rem auto;

}

.second_des {
  width     : 50%;
  font-size : 1.5rem;
  text-align: center;
}

.second_project {
  width      : 50%;
  display    : grid;
  place-items: center;
}

.second_project iframe {
  width   : 50%;
  height  : 100%;
  overflow: hidden;
}

.third {
  display: flex;
  width  : 80%;
}

.third_project {
  width      : 50%;
  display    : grid;
  place-items: center;

}

.third_project iframe {
  border-radius: 25px;
  width        : 90%;
  height       : 100%;
}

.third_des {
  text-align: center;
  width     : 50%;
  height    : 100%;
  font-size : 1.5rem;
}

.fourth {
  display: flex;
  margin : 2.54rem auto;

}

.fourth_des {
  width     : 50%;
  font-size : 1.5rem;
  text-align: center;


}

.fourth_project {
  width: 50%;

}

.fourth_project iframe {
  width : 90%;
  height: 100%;
}

.ending {
  width       : 100%;
  height      : 10rem;
  color       : #fff;
  border-color: rgb(69, 69, 255);
}