:root {

    --accent: #22D3EE;
    --accent-dark: #12C3DE;
    --background: #f4f6f9;
    --dark: #232F40;
    --text: #000000;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', Helvetica, sans-serif;
}

body{

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(120deg, var(--dark), #171f2b);
    color:white;

    text-align:center;
    padding:20px;

}

.coming-soon{

    max-width:600px;

}

.coming-soon h1{

    font-size:48px;
    margin-bottom:20px;

    text-shadow:
    0 0 20px rgba(25,181,200,0.7),
    0 0 40px rgba(25,181,200,0.5);

}

.coming-soon p{

    font-size:24px;
    color:rgba(255,255,255,0.8);
    line-height:1.6;

}

.coming-soon img{

    width: 100%;
    margin-bottom: 40px ;
}