*{
    padding: 0;
    margin: 0;
   
}

body{
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(255, 255, 255);
    /* font-family: 'Kanit', sans-serif; */
    /* background-image: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%); */
    /* background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%) #989898;  */
    /* background-blend-mode: multiply,multiply; */
    height: 100vh;
    overflow: hidden;
}

.container{
    height: 100vh;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top:35vh;
}

.logo{
    border: black 1px solid;
    height: 75px;
    
}
.containerHeading{
 font-family: 'Nunito Sans', sans-serif;
 color:#282828;
 font-weight: 800;
 font-size:58px;
 letter-spacing: 1px;
}
.comingSoon{
    text-align: right;
}
.comingSoonText h2{
    font-weight: 200;
    letter-spacing: 3px;
    text-align: right;
}
.comingSoonText{
    display: inline-block;
    
}
.comingSoonDot{
    text-align: right !important;
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: red;
    margin-right: 5px;
    animation: colorchange 4s; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 4s; /* Chrome and Safari */
    animation-iteration-count: 200;
}
#illustration{
    margin-top:100px;
    cursor:pointer;
}

.btn{
    height: 40px;
    width: 300px;
    font-weight: 200;
    letter-spacing: 3px;
    font-size: 18px;    
    border:black 1px solid;
    /* border-radius: 20px; */
    background-color: Transparent;
    background-repeat:no-repeat;
    cursor:pointer;
    color: black;
    
}
.btn:active{
    opacity: 0.5 !important;
}



@keyframes colorchange
    {
      0%   {background: #bcb6ff;}
      25%  {background: white;}
      50%  {background: #bcb6ff;}
      75%  {background: white;}
      100% {background: #bcb6ff;}
    }

    @-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
    {
      0%   {background: #bcb6ff;}
      25%  {background: white;}
      50%  {background: #bcb6ff;}
      75%  {background: white;}
      100% {background: #bcb6ff;}
    }