@font-face {
  font-family: 'Manrope';
  src: url('./Manrope.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('./Manrope.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

body {
  background-image: url('./background.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container {
  width: 50%;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  padding: 24px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
}
h1 {
  font-size: 24px;
  margin-bottom: 12px;
}
p {
  text-align: center;
  font-size: 16px;
}
b {
  font-size: 24px;
}
span {
  color: #0c9f47;
}
a {
  color: #0c9f47;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .container {
    width: 90%;
    padding: 16px;
  }
  h1 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
}