*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom right, #fdfc47, #24fe41);
}

.main-container {
  display: flex;
  flex-direction: column;
  width: min(600px, 95vh);
  background-color: white;
  box-shadow: 0 0 5px rgba(11, 97, 0, 0.356);
  padding: 25px;
}

.main-container h1 {
  font-family: Bungee;
  background: linear-gradient(to right, #fdfc47, #24fe41);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.main-container img {
  max-width: 100%;
  max-height: 300px;
  filter: brightness(1.15);
  align-self: center;
  margin: 10px 0;
}

.main-container .para {
  font-family: Inter;
  line-height: 1.5;
  color: rgba(101, 125, 2, 0.98);
}

.main-container .para a {
  color: inherit;
  text-decoration: underline dotted;
  transition: color 0.1s ease;
}

.main-container .para a:hover {
  color: #d8eb47;
  text-decoration: underline solid;
}
