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

.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.hi {
  width: 800px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
}

.intro {
  font-size: 100px;
}

.links {
  margin: 0px;
  width: 1200px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 200px;
}

.about,
.projects,
.resume,
.github {
  width: 250px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.box {
  width: 198px;
  height: 198px;
  border-radius: 30%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  margin-top: 20px;
  font-size: 30px;
}

.pic {
  width: 200px;
  height: 200px;
  border-radius: 30%;
  background-color: white;
  transition: opacity 0.3s;
}

.blue {
  background-color: #27baef;
}

.red {
  background-color: #e63232;
}

.weblogo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
}

.box:hover .pic {
  opacity: 0.5;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  body {
    background-color: whitesmoke;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
      sans-serif;
  }

  .main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
    position: relative;
  }

  .hi {
    width: 400px;
    height: 150px;
    margin: 0px;
    position: absolute;
    top: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .intro {
    font-size: 50px;
  }

  .links {
    width: 400px;
    height: 300px;
    position: absolute;
    top: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about,
  .projects,
  .resume,
  .github {
    width: 250px;
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .box {
    width: 79px;
    height: 79px;
    border-radius: 30%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .title {
    margin-top: 20px;
    font-size: 20px;
  }

  .pic {
    width: 80px;
    height: 80px;
    border-radius: 30%;
    background-color: white;
    transition: opacity 0.3s;
  }

  .blue {
    background-color: #27baef;
  }

  .red {
    background-color: #e63232;
  }

  .weblogo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }

  .box:hover .pic {
    opacity: 0.5;
    cursor: pointer;
  }
}

@media only screen and (min-width: 1920px) {
  .main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
  }
}
