html {
  margin: 0;
  height: 100%;
}

body {
  background-color: #252525;

  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  background-image: url('../assets/background.png');
  background-size: contain;
}

header {
  margin-bottom: 25px;
}

header,
header figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: #EDE8D0cc;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.foto-perfil {
  border-radius: 100%;
  width: 50%;
  max-width: 500px;

  animation: rotate-animation 10s infinite;
}

.foto-perfil-descricao {
  margin-top: 10px;

  font-size: 32px;
  font-weight: bold;

  color: #2A0F00;
}

header p {
  margin-top: 10px;

  font-size: 18px;
  font-weight: bold;

  color: #2A0F00;
}

main {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main a.button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 90%;
  max-width: 350px;
  height: 42px;

  margin: 0;
  margin-top: 18px;

  padding: 0;

  border: 2px solid #2A0F00;
  border-radius: 20px;

  background-color: #80CEE1;

  transition: 500ms;

  font-size: 24px;
  font-weight: bold;

  color: #2A0F00;
}

main a.button:hover,
main a.button:focus {
  transition: 500ms;

  background-color: #2A0F00;
  color: #80CEE1;
}

.podcast-player {
  margin-top: 30px;
}

@keyframes rotate-animation {
  0% {}

  90% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 360deg);
  }
}