body {
  display: flex;
  justify-content: center;
}

section {
  width: 30%;
  height: 100%;
  padding: calc(var(--spacing) * 2);
}
@media only screen and (max-width: 600px) {
  section {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 800px) {
  section {
    width: 75%;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1500px) {
  section {
    width: 40%;
  }
}

section #container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e, #252525);
  border-radius: var(--radius);
  padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

section #container #header {
  width: 100%;
  text-align: center;
}
section #container #header #profile {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  background: #ff0000;
  border-radius: 25%;
  border: 2px solid var(--headline);
  background-image: url('./../img/pfp-otter_winter.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
section #container #header #name {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--headline);
}

section #container #separator {
  margin: 20px auto;
  width: 50%;
  height: 5px;
  background: #ffffff;
}

section #container #content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
section #container #content .button {
  position: relative;
  width: 80%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: var(--spacing) 0;
  margin: var(--spacing) 0;
  background: var(--background);
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}
section #container #content .button:hover {
  background: var(--major-color);
  color: #000000;
  letter-spacing: 2px;
}
