@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Space+Grotesk:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #6E3FB1;
/*background-color: #333;*/
}

h1{
    font-family: "Sora", sans-serif;

}
.logo {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 20px;
}
.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.index_all{
    padding: 0 20%;
}
.coming_soon{
    text-align: center;
    padding-block: 50px;
    color: #fff;
}
.coming_soon h1{
    font-size: 105px;
    text-transform: uppercase;

}

#notifyForm{
   display:grid ;
   grid-template-columns: 70% 30%;
   gap: 30px;
    width: 100%;
    margin-top: 50px;

}
.notify input{
    width: 100%;
    height: 45px;
    border: 2px solid #B1F401;
    background-color: #fff;
    padding-left: 4%;
}

.notify input:focus{
    outline: none;
}

.notify button{
    background-color: #B1F401;
    color: #fff;
    border: none;
    height: 45px;
}

.coming_soon p{
    margin-top: 20px;
}

@media only screen and (max-width: 1110px) {
  
    .coming_soon h1{
        font-size: 85px;
        text-transform: uppercase;
    
    }
}


@media only screen and (max-width: 910px) {
   

    .coming_soon h1{
        font-size: 65px;
        text-transform: uppercase;
    
    }
}


@media only screen and (max-width: 810px) {
     #notifyForm{
       display: flex;
       flex-direction: column;
     
     }
    .index_all{
        padding: 0 10%;
    }
    .coming_soon h1{
        font-size: 45px;
        text-transform: uppercase;
    
    }
}

@media only screen and (max-width: 410px) {
   
    #notifyForm{
       display: flex;
       flex-direction: column;
     
     }
    .coming_soon h1{
        font-size: 35px;
        text-transform: uppercase;
    
    }
}