@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #2a2a2a;
  background-image: url('https://picsum.photos/1600/900/?&blur=2');
  color: white;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.main {
  justify-content: space-around;
}
.card {
  max-width: 800px;
  background-color: #2a2a2a;
  border: none;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgb(202, 199, 199);
  display: flex;
  padding: 3rem;
  /* transform: translateY(-50%); */
  opacity: 70%;
  align-items: center;
  justify-content: center;
  vertical-align: center;
}

.user-info {
  color: #eee;
  margin-left: 2rem;
}
.user-info h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: rgb(13, 216, 243);
}
.user-info h2 {
  margin-top: 0;
  color: aliceblue;
  /* text-align: center; */
}
.user-info #author {
  text-align: right;
  color: white;
  font-size: 1rem;
}

.user-info #author a {
  color: rgb(13, 216, 243);
  font-size: 1rem;
}
.user-info p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.5rem;
  color: antiquewhite;
}

.page-footer {
  position: fixed;
  bottom: 0;
}
.row {
  background-color: #2a2a2a;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.icon {
  color: aliceblue;
  margin: 1vw;
}

.icon:hover {
  color: rgb(13, 216, 243);
  /* font-size: 1.5em; */
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.copyright {
  background-color: #2a2a2a;
  display: flex;
  justify-content: space-around;
  cursor: pointer;
  color: rgb(13, 216, 243);
  font-size: 1em;
  /* text-decoration: none;*/
}

@media (max-width: 500px) {
  .body {
    overflow: scroll;
  }
  .user-form {
    max-width: 400px;
  }
  .user-info h2 {
    text-align: center;
  }
  .card {
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 10px; */
  }
  .page-footer {
    position: relative;
    bottom: 0;
  }
  .row {
    background-color: #2a2a2a;
    visibility: hidden;
    /* display: none; */
  }

  .copyright {
    display: flex;
    background-color: #2a2a2a;
    justify-content: space-around;
  }
}
