:root {
  --background: #fdfeff;
  --box_shadow: 0 4px 10px rgba(128, 128, 128, 0.3);
  --cor_tema: #2465ff;
  --cor_texto: #4e5d65;
}

* {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1.5px;
}

*:focus-visible{
  outline: 3px solid #4a90e2;
  outline-offset: 5px;
}

html {
scroll-behavior: smooth;
}

p,
h1,
h2,
h3 {
  color: var(--cor_texto);
}

p{
    line-height: 25px;
}

section {
  width: 100%;
  height: auto;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background);
}

.center {
  width: 100%;
  max-width: 1200px;
  justify-self: center;
  padding: 3%;
}

.center h2 {
  font-size: 30px;
  text-transform: capitalize;
}
