*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
    color:#fff;
}

.coming-soon{
    height:100vh;
    background:url("images/banner.jpeg")
    center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
    z-index:1;
}

/* DROPS CONTAINER */
.drops{
    position:absolute;
    inset:0;
    z-index:0;
}

/* SINGLE DROP */
.drop{
    position:absolute;
    top:-100px;
    width:2px;
    height:120px;
    background:linear-gradient(to bottom, transparent, #ff6a00);
    animation: fall linear infinite;
    opacity:.6;
}

@keyframes fall{
    to{
        transform:translateY(120vh);
    }
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 80px 30px;
}

.tagline{
    color:#ff6a00;
    letter-spacing:2px;
    font-weight:600;
}

h1{
    font-size:38px;
    margin:15px 0;
}

h1 span{
    color:#ff6a00;
}

p{
    color:#ccc;
    margin-bottom:40px;
}

.countdown{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.countdown span{
    font-size:48px;
    font-weight:700;
    color:#ff6a00;
}

.countdown small{
    display:block;
    font-size:12px;
}

.notify{
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #ff6a00;
    padding-bottom:5px;
}
@media only screen and (max-width: 991px) {
 h1 {
    font-size: 30px;
}
}
@media only screen and (max-width: 767px) {
   h1 {
    font-size: 33px;
}    
}
@media only screen and (max-width: 565px) {
    h1 {
    font-size: 24px;
    margin: 15px 0;
}
.countdown span {
    font-size: 30px;
}
p{
    font-size: 14px;
}
.content {
    padding: 80px 10px 80px 15px;
}
}