* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(157.76deg, #FFFFFF 10.31%, #00A9FF 53.03%, #0230FF 84.19%);
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.header {
    display: flex;
    flex-direction: column;
}

.header h1 {
    color: #fff;
    font-size: 80px;
    line-height: 90px;
    font-weight: 600;
    margin-top: 25%;
}
.header img {
    width: 600px;
    height: 200px;
}

.soon {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    margin-top: 15%;
    justify-content: center;
    width: 100%;
    display: flex;
    font-family:"Inter", sans-serif;
}

@media screen and (max-width: 768px) {
    .header img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    
    .header h1 {
        font-size: 48px;
        line-height: 56px;
        margin-top: 35%;
    }
    
    .soon {
        font-size: 32px;
        line-height: 36px;
        margin-top: 25%;
    }
}

@media screen and (max-width: 480px) {
    .header img {
        max-width: 300px;
    }
    
    .header h1 {
        font-size: 36px;
        line-height: 42px;
        margin-top: 45%;
    }
    
    .soon {
        font-size: 24px;
        line-height: 28px;
        margin-top: 35%;
    }
}
