h1 {
  color: red;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  width: 100vw;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: hidden;
}

#placeholder {
  font-weight: 800;
  font-size: 50px;
}

.message {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  text-align: center;
}

.visible {
  opacity: 1;
}

.fade-in-out-content {
  opacity: 1;
  animation-name: fadeInOpacityContent;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes fadeInOpacityContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.displayMainContent {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.mainContent {
  display: none;
}

#contactFormWrapper {
  width: 30%;
}

#contactForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

input,
textarea {
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

button[type="submit"] {
  font-weight: 900;
  width: 50%;
  color: rgb(40, 37, 37);
  background-color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
}

button[type="submit"]:hover {
  background-color: #218838;
  color: white;
}

#linkedin {
  height: 50px;
  width: 50px;
}

#github {
  height: 50px;
  width: 70px;
}

#intro {
  font-size: small;
  text-align: center;
  margin-bottom: 20px;
}

input {
  margin-top: 10px;
}

textarea {
  margin-top: 10px;
}

label {
  font-weight: 700;
}

#links {
  display: flex;
  justify-content: center;
}

#profilePhoto {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

@media only screen and (max-width: 1000px) {
  body {
    margin-top: 30px;
    font-size: 0.8em;
  }

  #placeholder {
    font-size: 30px;
    text-align: center;
  }

  #profilePhoto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }

  #contactFormWrapper {
    width: 70%;
  }

  #intro {
    text-align: center;
    width: 70%;
  }

  .displayMainContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
}
