@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.container {
    height: 100vh;
    overflow: hidden;
    padding: 20px;
}
.container .image {
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.container h1 {
    width: 100%;
    font-size: 60px;
    line-height: 70px;
    color:white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}
.container p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    max-width: 550px;
    text-align: center;
    padding-top: 8px;
}
.container .logo {
    margin: auto;
    width:100%;
    max-width: 180px;
    align-items: center;
    margin-bottom: 35px;
}
.popup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 25px;
  max-width: 600px;
  background-color: rgba(0, 208, 254, 0.25);
  top: 50%;
  position: relative;
  transform: translate(-50%,-50%);
  left: 50%;
  max-height: 80vh;
  overflow: auto;
}

/* Media Queries for Responsive Design */
@media (max-width: 600px){
  .container .logo {
    max-width: 150px;
    margin-bottom: 30px;
  }
  .container h1 {
    font-size: 40px;
    line-height:40px;
  }
  .container p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-height: 400px){
  .container .logo {
    max-width: 100px;
    margin-bottom: 20px;
  }
  .container h1 {
    font-size: 30px;
    line-height:30px;
  }
  .container p {
    font-size: 14px;
    line-height: 20px;
  }
}