@font-face {
  font-family: Barbra;
  src: url(/assets/Barbra-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 80px;
  font-family: Montserrat, sans-serif;
  background-color: #d6d68b;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #a13667;
  text-align: center;
}

h1 {
  font-family: Barbra, Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 56px;
  margin-bottom: 20px;
  max-width: 1000px;
  line-height: 1;
}

p {
  max-width: 800px;
  font-size: 20px;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 40px;
}

.pink {
  color: #f4d7d7;
  filter: drop-shadow(2px 0 0 #a13667) drop-shadow(0 2px 0 #a13667)
    drop-shadow(-2px 0 0 #a13667) drop-shadow(0 -2px 0 #a13667);
}

.outlined {
  filter: drop-shadow(2px 0 0 #a13667) drop-shadow(0 2px 0 #a13667)
    drop-shadow(-2px 0 0 #a13667) drop-shadow(0 -2px 0 #a13667);
  color: #d6d68b;
}

a {
  color: #5b913e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  h1 {
    font-size: 48px;
  }

  .logo {
    margin-bottom: 0px;
  }
}
