@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.313rem;
  color: #282828;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: #555555;
}

.container {
  max-width: 37.75rem;
  height: 13.188rem;
  margin: 3.125rem auto;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, white, #F9F8FB);
  border-radius: 0.25rem;
  border: solid 0.063rem #EEECF1;
  text-align: left;
  display: flex;
}
.container .container-image {
  height: auto;
  transform: translateX(4.375rem);
}

a {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.25rem;
  background-color: #6638F0;
  width: 8.313rem;
  height: 2.625rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
a:hover, a.active {
  background-color: white;
  color: #6638F0;
}

.popup {
  display: flex;
  width: 47rem;
  height: 34.063rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: solid 0.063rem #EEECF1;
}
.popup .left-side {
  background: linear-gradient(to bottom, #6638F0, #5CC9F5);
  flex: 1;
}
.popup .right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.popup h1, .popup p {
  padding: 0.25rem 1.563rem;
  width: 19.563rem;
  margin: 0;
}
.popup h1 {
  line-height: 1.875rem;
}
.popup a {
  height: auto;
  width: auto;
}
.popup .pop-btns {
  display: flex;
  gap: 1.25rem;
  padding: 0.25rem 1.563rem;
}
.popup .close-pop {
  align-self: flex-end;
  width: 18px;
  background: none;
  margin: 0.938rem 1.25rem 0rem 0rem;
  padding: 0;
  border: none;
}

@media (max-width: 37.5rem) {
  .container {
    flex-direction: column;
    height: auto;
    margin: 1.875rem;
  }

  .graphic-image svg {
    width: 40%;
    margin: 1rem 0;
  }

  .popup {
    flex-direction: column;
    width: 90%;
    height: auto;
    margin: 1.875rem;
  }

  .popup .left-side,
.popup .right-side {
    width: 90%;
    height: auto;
    margin: 0.5rem 0;
  }
}