* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  color: pink;
  background-color: black;
}

.footbtn a {
  color: black;
}

a {
  color: white;
  text-decoration: 2px 2px mediumorchid;
}

section {
  padding: 50px;
}

header,
footer,
section {
  display: flex;
  width: 100%;
  margin: 3%;
}

.container {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.container2 {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  color: white;
  justify-content: flex-end;
}

.link {
  font-size: 20px;
  margin: 10px;
  color: #ffc0cb;
}

/* Links with effect for prettiness :D */

a {
  color: #ffc0cb;
}

.link2 {
  margin-right: 10px;
}

.prog,
.des {
  font-family: "Raleway", sans-serif;
  font-size: 45px;
  margin: 20px;
  text-align: center;
  color: pink;
}

.container2 .des {
  margin-right: 20%;
}

footer {
  justify-content: center;
  width: 1280px;
  font-size: 30px;
}

.footbtn {
  width: 280px;
  font-size: 25px;
  cursor: pointer;
}

.intro {
  width: 100%;
  justify-content: space-around;
}

.footcopy {
  width: 100%;
  justify-content: space-around;
  margin-top: 120px;
}

/* This is for my about page */

.about,
.section,
.contact,
.contact2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.aboutMe p {
  font-size: 20px;
  width: 450px;
  padding: 2%;
}

.aboutMe h1 {
  font-size: 35px;
  margin: 2%;
}

.container {
  border-radius: 5px;
  padding: 20px;
}

.contact2 h3 {
  font-size: 20px;
}

.contact h1 {
  padding: 20px;
  text-decoration: underline;
  font-size: 25px;
}

.project {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.projImg img {
  flex: 50%;
  padding: 5px;
}
/*<------------ Media Queries For Smaller Screens ----------------> */

@media only screen and (max-width: 960px) {
  header .container .link {
    display: flex;
    flex-flow: column;
    align-content: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    padding: 1px;
    margin-bottom: 1px;
  }
  .prog,
  .des {
    width: 100%;
    height: 50%;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .des {
    margin-top: 30px;
  }

  section .about,
  .aboutMe {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }

  .aboutMe h1,
  .aboutMe p {
    font-size: 20px;
    margin: 0% auto;
    text-align: center;
  }
  footer,
  .footbtn {
    font-size: 15px;
    margin: 0% auto;
    text-align: center;
  }
  .footbtn {
    width: fit-content;
  }
  .footcopy {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
  }
  .copyright {
    font-size: 20px;
    margin-top: 1px;
  }
}
