* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #2f2f2f;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/Wave.svg);
  background-repeat: no-repeat;
  background-color: #f4f4f4;
  max-width: 500px;
  border-radius: 1rem;
  padding: 2rem;
}

.contact img {
  max-width: 300px;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #676767;
}

.strike {
  text-decoration: line-through;
  color: #dadada;
}

p {
  padding: 2rem 0;
  text-align: center;
}

button {
  padding: 1rem;
  background-color: #e4e4e4;
  border: 1px dotted #d6d6d6;
  text-transform: uppercase;
  font-size: 1rem;
}

button:hover {
  background-color: #d6d6d6;
  transition: all 1s;
}

button a,
button a:visited {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: bold;
}
