* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

html {
  height: 100vh;
  font-size: 14px;
}

body {
  background-color: #606060;
  height: 100%;
}

.container {
  height: 100%;
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  color: #fff;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.degrade {
  background: #e34d89;
}

/* ESTILO DO HEADER */

header {
  text-align: center;
  margin-bottom: 17px;
  margin-top: 80px;
}
header img {
  max-width: 150px;
  margin-bottom: 11px;
  border-radius: 50%;
}

header h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 300;
}

/* ESTILO DOS BOTÕES */

section.botoes-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a.link button {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 30px;
  font-size: 1.2em;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

a.link i {
  font-size: 1.5em;
}

a.link button:hover,
footer a.btn-footer:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  margin: 30px;
}

footer a.btn-footer {
  width: 60px;
  height: 60px;
  display: inline-block;
  font-size: 2em;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.2s;
}
