* {
  font-family: "Raleway", sans-serif;
  font-family: "Smooch Sans", sans-serif;
  font-family: "Source Sans Pro", sans-serif;
}

html {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 20px;
  margin: 0 10%;
}
.content h3 {
  margin: 0;
  font-size: 45px;
  margin-bottom: 25px;
}
.content p {
  font-size: 20px;
  margin: 0;
  margin-bottom: 5px;
}

button {
  width: 150px;
  height: 50px;
  outline: none;
  border: none;
  background-color: black;
  color: white;
  font-family: "Raleway", sans-serif;
  font-family: "Smooch Sans", sans-serif;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: ease-in 0.2s;
}

button:hover {
  border: 2px solid black;
  background-color: white;
  color: black;
}/*# sourceMappingURL=index.css.map */