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

body {
  background-color: #fc3153;
  text-align: center;
  margin: 0;
  overflow: hidden !important;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
  
  * {
    box-sizing: border-box;
    overflow: hidden !important;
  }
  
  #console p {
    font-family: monospace;
    font-weight: bold;
    font-size: 0.75rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: limegreen;
    text-shadow: 0px 0px 10px limegreen;
  }

  #console{
    padding: 1vh 2vw;
    width: 100% !important;
    height: 100%;
    position: absolute;
    overflow: hidden;
  }
  
  .msg {
    z-index: 10;
    width: 80vw;
    height: 60px;
    font-family: monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    /* padding-top: 5vh; */
    background: red;
    box-shadow: 0 0 30px red;
    text-shadow: 0 0 20px white;
    color: white;
    padding : 20px;
    position: absolute !important;
    left: 50%;
    margin-left: -40vw;
    top: 50%;
    margin-top: -30px;
    text-align: center;
    min-width: 200px;
    animation-name: blink;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
  }
  
  @keyframes blink {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .popup-trigger {
    display: block;
    margin: 0 auto;
    padding: 35px 55px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: box-shadow 0.3s ease 0s;
  }
  .popup-trigger:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  .popup {
    font-family: 'Poppins', sans-serif ;
    position: fixed;
    inset: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 20px 10px;
    color: #000;
    visibility: hidden;
    transition: visibility 0.8s ease 0s;
  }
  .popup::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.8s ease 0s;
  }
  .popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
  }
  .popup__body {
    width: 100%;
    max-width: 800px;
    padding: 50px;
    background-color: #fff;
    border-radius: 5px;
    transform: scale(0);
    transition: all 0.3s ease 0s;
  }
  .popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 30;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .popup__close::after, .popup__close::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
    transition: all 0.3s ease 0s;
  }
  .popup__close::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }
  .popup__close::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }
  .popup__text {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
  }
  .popup.show {
    visibility: visible;
    overflow: auto;
  }
  .popup.show::before {
    opacity: 1;
  }
  .popup.show .popup__body {
    transform: scale(1);
    transition: all 0.3s ease 0.2s;
  }