:root {
  /*--dark-background-color: #2c3639;*/
  /*--dark-secondary-color: #3f4e4f;*/
  --dark-secondary-color: #2c3639;
  --dark-background-color: #3f4e4f;
  --light-primary-color: #a27b5c;
  --light-secondary-color: #dcd7c9;

  --btn-border-radius: 0.4em;

  font-size: 16px;
  font-family: "Orbitron", sans-serif;
  font-family: "Playpen Sans", cursive;
}

body,
html {
  padding: 0;
  margin: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.row {
  margin: 20px 0;
  align-content: center;
}

.btns-row {
  display: flex;
  justify-content: center;
}

#link-area {
  width: 688px;
  padding: 0 1em 4em 1em;
  background-color: var(--dark-secondary-color);
}

.profile-photo {
  width: 124px;
  height: 124px;
  margin: 30px 0 10px;
  border-radius: 50%;
}

#profile-title {
  font-size: 1.3rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 1em;
}

.btn {
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
  border: 2px solid #596e79;
  border-radius: var(--btn-border-radius);
  background-color: var(--dark-secondary-color);
  color: var(--light-primary-color);
  padding: 1em;
  -webkit-transition: all 0.5s; /* add this line, chrome, safari, etc */
  -moz-transition: all 0.5s; /* add this line, firefox */
  -o-transition: all 0.5s; /* add this line, opera */
  transition: all 0.5s; /* add this line */
}

.btn:hover {
  background-color: var(--dark-background-color);
}

.btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

body {
  text-align: center;
  background-color: var(--dark-background-color);
  color: var(--light-secondary-color);
}

@media (max-width: 780px) {
  .buttons {
    width: 100%;
  }

  #link-area {
    max-width: 85%;
  }
}
