@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
}

body .s1 {
  position: absolute;
  width: 100px;
  height: 200px;
  border-radius: 50px;
  background-color: black;
  opacity: 0.3;
  top: -125px;
  right: 60px;
  z-index: 1;
  transform: rotate(-30deg);
}

body .s1c {
  position: absolute;
  width: 105px;
  height: 190px;
  border-radius: 50px;
  background-color: #8ce1f0;
  top: -125px;
  right: 60px;
  z-index: 1;
  transform: rotate(-30deg);
}

body .s2 {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50px;
  background-color: #8ce1f0;
  opacity: 0.2;
  top: 525px;
  right: 15px;
  z-index: 3;
}

body .s3 {
  position: absolute;
  width: 150px;
  height: 75px;
  border-radius: 5px;
  background-color: #565e16;
  opacity: 0.1;
  bottom: -5px;
  left: 25px;
  z-index: 2;
}

body .s4 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background-color: #1b89a5;
  opacity: 0.3;
  top: -125px;
  left: -70px;
  z-index: 2;
}

.header-container {
  width: 100%;
  height: 75px;
  background: #8ce1f0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 5px 15px 5px 35px;
}

.nav span {
  display: inline-block;
  font-weight: 700;
  font-size: 60px;
  color: gray;
}

.nav span:hover {
  color: #5e61f7ee;
}

.nav div {
  position: relative;
  display: inline-block;
  font-size: 25px;
  bottom: 10px;
  color: antiquewhite;
  text-shadow: 0.5px 0.5px 2px #0796f5;
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 25px;
  font-size: 18px;
  letter-spacing: 3px;
  z-index: 2;
}

.nav a {
  display: block;
  padding-right: 25px;
  font-weight: 700;
  text-decoration: none;
  color: gray;
  transition: all 0.5s ease-out;
}

#about {
  color: #ff5656;
}

.nav a:hover {
  color: black;
  transform: scale(1.2);
}

.nav li a:hover {
  transform: rotate(3deg);
}

.mobile-container {
  display: none;
  width: 100%;
  height: 50px;
  background: #daf4f8;
}

.mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 5px 15px 5px 35px;
}

.mobile-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 25px;
  font-size: 18px;
  letter-spacing: 3px;
  z-index: 2;
}

.mobile-nav a {
  text-decoration: none;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #8ce1f0;
}

.text-container {
  max-width: 100%;
  background: rgb(41, 49, 56) url(greg.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  text-align: center;
  padding: 8px 20px;
  color: antiquewhite;
  z-index: 3;
}

.text-container h2 {
  line-height: 1.5;
  padding: 25px;
}

.text-container li {
  list-style: none;
}

.text-container p {
  max-width: 960px;
  display: inline-block;
  padding: 25px;
}

.footer-container {
  display: inline;
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-container ul {
  max-width: 100%;
  margin: 45px 25px 15px 25px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container li {
  list-style: none;
}

.footer-container li a {
  text-decoration: none;
  margin-right: 15px;
  margin-left: 15px;
  color: black;
  transition: all 0.5s;
}

.footer-container ul li a .fa-facebook:hover {
  color: blue;
  transition: 0.5s ease-out;
  transform: scale(1.5);
}

.footer-container ul li a .fa-linkedin:hover {
  color: #4d80ec;
  transition: 0.5s ease-out;
  transform: scale(1.5);
}

.footer-container ul li a .fa-github:hover {
  color: black;
  transition: 0.5s ease-out;
  transform: scale(1.5);
}

.footer-container p {
  text-align: center;
  font-size: small;
  padding-bottom: 50px;
}

@media screen and (max-width: 900px) {
  .nav ul {
    display: none;
  }

  .mobile-container {
    display: flex;
  }
}

@media screen and (max-width: 720px) {
  body .s2 {
    display: none;
  }

  body .s3 {
    display: none;
  }

  .nav a {
    display: block;
    margin: auto;
  }
}
