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

body {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  background-color: #1a2816;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("SVG/bufalo-background.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}

.overlay-box {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 250, 229, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  max-width: 500px;
}

.logo {
  width: 120px;
  margin-bottom: 12px;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #fffae5;
  font-family: "Righteous", sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #fffae5;
}
