@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --primary-color: #fb5f08;
}

* {
  font-family: "Inter", sans-serif;
  color: white;
}

body {
  margin: 0px;
}

.container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background-color: var(--primary-color);
  justify-content: center;
  align-items: center;
  position: relative;
}

.container-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 48px;
  padding: 64px;
}

.container-image {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 48px;
  padding: 64px;
}

.container-image > img {
  width: 35vw;
}

.container-image > .blip-logo {
  display: none;
}

.blip-logo {
  height: 90px;
}

.title-warning {
  font-size: 36px;
  font-size: 700;
  text-align: center;
}

.description-warning {
  padding: 0px 64px;
  text-align: center;
}

.learn-more-button {
  padding: 16px 32px;
  color: var(--primary-color);
  background-color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 32px;
  text-decoration: none;
}

.footer {
  position: absolute;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 48px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  bottom: 32px;
  right: 0px;
  width: 50%;
  padding: 16px 64px 16px 16px;
}

.footer > img {
  height: 85px;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .container {
    align-items: center;
  }

  .container-text {
    width: 50vw;
    padding: 0px;
  }

  .container-image {
    width: 40vw;
    height: auto;
    padding: 24px;
  }

  .container-image > img {
    width: 40vw;
  }

  .container-image > .blip-logo {
    display: none;
  }

  .footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    justify-content: center;
    background-color: white;
    padding: 16px;
  }

  .footer > img {
    height: 40px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1000px) {
  .container {
    flex-direction: column-reverse;
  }

  .container-image {
    width: auto;
    height: auto;
    margin: auto;
    padding: 64px 128px;
  }

  .container-image > img {
    width: 50vw;
  }
  .container-text {
    width: auto;
  }

  .container-text {
    padding-bottom: 120px;
    padding-top: 0px;
  }

  .container-image > .blip-logo {
    display: block;
    height: auto;
    width: 40vw;
  }

  .container-text > .blip-logo {
    display: none;
  }

  .footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    justify-content: center;
    background-color: white;
    padding: 16px;
  }

  .footer > img {
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .container {
    flex-direction: column-reverse;
    padding: 0px;
  }

  .container-image {
    width: auto;
    height: auto;
    margin: auto;
    padding: 0px;
    row-gap: 24px;
  }

  .container-image > img {
    width: 50vw;
  }
  .container-text {
    width: auto;
    padding: 0px 48px 72px;
    row-gap: 24px;
  }

  .container-text > .blip-logo {
    display: none;
  }

  .title-warning {
    font-size: 20px;
  }

  .description-warning {
    font-size: 12px;
    padding: 0px;
  }

  .container-image > .blip-logo {
    display: block;
    height: auto;
    width: 30vw;
  }

  .learn-more-button {
    padding: 12px 28px;
    font-size: 12px;
  }

  .footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    justify-content: center;
    background-color: white;
    padding: 16px;
  }

  .footer > img {
    height: 30px;
  }
}
