/*.btn {
  outline: none;
  border: none;
  width: 320px;
  height: 55px;
  background: #4285f4;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
  transition-property: border-left, border-right, box-shadow;
}*/
.popup-box h3 {
  text-align: center;
}
.btn:hover {
  border-left: solid 8px rgba(255, 255, 255, 0.5);
  border-right: solid 8px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 100px rgba(66, 133, 244, 0.8);
}

.user-input {
  width: 320px;
  height: 55px;
  margin-bottom: 30px;
  outline: none;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  transition: 0.5s;
  transition-property: border-left, border-right, box-shadow;
}
.user-input:hover,
.user-input:focus,
.user-input:active {
  border-left: solid 8px #4285f4;
  border-right: solid 8px #4285f4;
  box-shadow: 0 0 100px rgba(66, 133, 244, 0.8);
}
@import url("https://fonts.googleapis.cgom/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  background-color: #525459;
}
.popup-screen {
  z-index: 999999;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: 0.5s ease;
  transition-property: visibility;
}
.popup-screen.active {
  visibility: visible;
}
.popup-box {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
}

.popup-screen.active .popup-box {
  transform: scale(1);
}

.popup-box h2 {
  font-size: 2.1em;
  font-weight: 800;
  margin-bottom: 20px;
}

.popup-box p {
  font-size: 1em;
  margin-bottom: 30px;
}

.popup-box .btn {
  color: #fff;
  background: green;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  padding: 7px 27px;
  border-radius: 3px;
}

.close-btn {
  position: absolute;
  font-size: 1em;
  top: 0;
  right: 0;
  margin: 15px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  transition-property: opacity;
}

.close-btn:hover {
  opacity: 1;
}

section {
  padding: 50px 100px;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image {
  position: relative;
  width: 45%;
  min-height: 450px;
}

.image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.info {
  position: relative;
  width: 52%;
}

.info h2 {
  font-size: 2em;
  font-weight: 800;
}

.info p {
  font-size: 1em;
  text-align: justify;
  margin-top: 10px;
}

@media (max-width: 990px) {
  section {
    padding: 50px 30px;
  }

  .home {
    display: block;
  }

  .image {
    width: 100%;
  }

  .info {
    width: 100%;
    margin-top: 15px;
  }
}
