@media only screen and (max-width: 320px) {
  * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;

    margin: 0;
    padding: 0;
  }

  .parent-container-confirmation {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .image-container {
    width: 80px;
    height: 70px;
    margin-bottom: 20px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #confirmation-id {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dedede;
    width: 80%;
    border-radius: 5px;
    box-shadow: 4px 0px 6px rgba(0, 0, 0, 0.2), 0px 4px 6px rgba(0, 0, 0, 0.2);
  }

  #confirmation-id p {
    margin: auto 15px 15px 15px;
    text-align: justify;
    font-size: 1em;
  }

  #confirmation-id .fa-triangle-exclamation {
    margin-top: 45px;
  }
  #confirmation-id .fa-circle-check {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
  * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;

    margin: 0;
    padding: 0;
  }

  .parent-container-confirmation {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .image-container {
    width: 25vw;
    height: 25vw;
    margin-bottom: 20px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #confirmation-id {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dedede;
    width: 80%;
    border-radius: 5px;
    box-shadow: 4px 0px 6px rgba(0, 0, 0, 0.2), 0px 4px 6px rgba(0, 0, 0, 0.2);
  }

  #confirmation-id p {
    margin: auto 15px 15px 15px;
    text-align: justify;
    font-size: 3vw;
  }

  #confirmation-id .fa-triangle-exclamation {
    margin-top: 45px;
  }
  #confirmation-id .fa-circle-check {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;

    margin: 0;
    padding: 0;
  }

  .parent-container-confirmation {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .image-container {
    width: 25vw;
    height: 25vw;
    margin-bottom: 48px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #confirmation-id {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dedede;
    width: 80%;
    border-radius: 5px;
    box-shadow: 4px 0px 6px rgba(0, 0, 0, 0.2), 0px 4px 6px rgba(0, 0, 0, 0.2);
  }

  #confirmation-id p {
    margin: auto 15px 15px 15px;
    text-align: left;
    font-size: 3vw;
  }

  #confirmation-id .fa-triangle-exclamation {
    margin-top: 45px;
  }
  #confirmation-id .fa-circle-check {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
