* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --cor_Tema_1: #ffeff3;
  --cor_Tema_2: #17aeaa;
  --cor_Tema_3: #fb5b93;
  --cor_Tema_4: #5e302f;
}

html,
body {
  height: 100%;
  background-color: #fff6f7;
}

section {
  min-height: 40dvh;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.center {
  width: 100%;
  max-width: 1300px;
  padding: 30px 3%;
}

h1,
h2 {
  font-family: "Great Vibes", cursive;
  font-weight: 800;
  letter-spacing: 3.5px;
  line-height: 60px;
  color: var(--cor_Tema_2);
}

p,
h3 {
  font-family: "Patrick Hand", cursive;
  letter-spacing: 1px;
  line-height: 35px;
  color: var(--cor_Tema_4);
}

.banner a,
.portfolio a {
  font-family: "Lucida Sans", Verdana, sans-serif;
  text-decoration: none;
  background-color: var(--cor_Tema_2);
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 21px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

a svg,
a svg {
  margin-left: 10px;
  width: 25px;
  aspect-ratio: 1;
  color: white;
}

.banner a:hover,
.banner a:focus,
.portfolio a:hover,
.portfolio a:focus {
  background-color: var(--cor_Tema_3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Focus */
*:focus {
  outline: 3px solid #ff4081;
  outline-offset: 2px;
  border-radius: 20px;
}