@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap");
/* font-family: 'Comfortaa', cursive; */
body {
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Comfortaa', cursive;
  animation: background-animation 20s infinite linear;
  position: relative;
  color: #fff;
}

.cbg {
    padding: 20px;
    background: radial-gradient(transparent, rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.swcontentbox {
    width: 60%;
    margin: auto;
}

.wcontentbox {
    width: 75%;
    margin: auto;
}

.contentbox {
    width: 40%;
    margin: auto;
}
.scontentbox {
    width: 25%;
    margin: auto;
}
.xscontentbox {
    width: 18%;
    margin: auto;
}

.xwcontentbox {
    width: 90%;
    margin: auto;
}

.background {
    text-align: center;
    color: white;
    animation: fade-in 2s ease-in-out;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    animation: typing-animation 5s steps(30) infinite, blink-animation 1s infinite step-end;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.gla {
    display: inline-block;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
    padding: 8px;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    color: white;
    border: 2px solid white;
    overflow: hidden;
}

.inline-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.gla:hover {
    background-color: white;
    color: #241379;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes background-animation {
    0% {
        background: radial-gradient(circle, #241379, #06051f);
    }
    100% {
        background: radial-gradient(circle, #241379, #06051f);
    }
}

.glb {
    display: inline-block;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
    padding: 8px;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    color: white;
    border: 2px solid white;
    overflow: hidden;
}

.glbb {
    display: inline-block;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    width: 250px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    white-space: nowrap;
    border-radius: 30px;
    color: white;
    border: 2px solid white;
    overflow: hidden;
}


.footer-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

.glb:hover,
.glbb:hover {
    background-color: white;
    color: #241379;
}

.logo img {
    max-width: 200px;
    height: auto;
    filter: saturate(0%) brightness(3207%);
}
.modal{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.3s;
}

.modal-visible{
    opacity: 1;
    pointer-events: auto;
}
.bg{
    width: 382px;
    overflow: hidden;
    margin: auto;
    padding: 20px;
    animation: background-animation 20s infinite linear;
    border-radius: 20px;
    text-align: center;
    color: white;
}
.global-input {
    background: #ffffff;
    color: hsl( 245 calc( 1 * 45.1%) 43.7% / 1);
    font-family: 'Comfortaa', cursive;
    /* padding: 15px; */
    height: 30px;
    width: 300px;
    text-align: center;
    border: none;
    border-radius: 20px;
    resize: horizontal;
}
.bg button{
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: #ffffff;
    font-family: 'Comfortaa', cursive;
    height: 30px;
    border-radius: 20px;
    text-align: center;
}

@media only screen and (max-width:123vh) {
    .gli {
        width: 40%;
    }
    .glb {
        width: 40%;
        height: auto;
        padding: 5px;
    }
    .scontentbox {
        width: 40%;
    }
    .xscontentbox {
        width: 30%;
    }
    .swcontentbox {
        width: 80%;
    }
    .wcontentbox {
        width: 85%;
    }
    .xwcontentbox {
        width: 98%;
    }
    .contentbox {
        width: 75%;
    }
    .mobibr {
        display: block;
    }
}

.glhr {
  border: 5px solid #fff;
  border-radius: 20px;
}

html * {
    font-family: 'Comfortaa', cursive !important;
}