* {
  padding: 0;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 255px);
  width: 100vw;
  /* margin: 5% 0; */
}

.info {
  width: 80%;
  /* height: 400px; */
  padding: 30px 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}

.profile-img {
  padding: 10px;
  margin: 10px;
}

.post-content {
  font-size: 3rem;
  text-align: center;
}

.btn {
  width: 80%;
  max-width: 300px;
  height: 8vw;
  background-color: #4267b2;
  color: white;
  font-size: 1.5rem;
  /* border-radius: 50%; */
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.btn-active {
  display: block;
  margin-top: 5%;
}

@media (min-width: 0px) and (max-width: 1279px) {
  .post-content {
    font-size: 1.5rem;
    text-align: center;
  }

  .profile-img {
    width: 109px;
    height: 109px;
  }

  .info {
    width: 80%;
    /* height: 400px; */
    padding: 10px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }
}
