/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  height: 100vh;
  padding: 0px;
  margin: 0px;
  width: 100vw;
  background: #F0F0F0 url("/milk-bg.jpg") bottom center/cover no-repeat;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;  
}

/* POPUP BOX */
#card {
	width: 90%;
	max-width: 1102px;
  padding: 10px 25px 45px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#card .logo-img {
  width: 200px;
  margin-bottom: 0px;
  margin-top: 0;
  opacity: 0.95;
}

@media screen and (min-width: 768px) {
#card .logo-img {
  width: 260px;
}
}

p {
margin: 5px;
}


#card p:first-of-type {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}


.popup p:not(:first-of-type) {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}


.green-text {
  color: #60A41B;
  font-weight: 600;
}

.bold {
  font-weight: 600;
}


a {
  color: #60A41B;
  font-weight: 600;
  text-decoration: none;
}
