* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
}

body {
    background: rgb(1, 0, 68);
    text-align: center;
}

body .text-1 {
    font-size: 70px;
    color: white;
    margin-top: 150px;
    font: bold;
}

body .text-2 {
    font-size: 70px;
    color: white;
    margin-top: 220px;
    font: bold;
}

body .logo-img {
    height: 500px;
    width: 500px;
    position: absolute;
    top: 100px;
    left: 420px;
}

body .download-btn {
    border: 0;
    outline: 1px solid white;
    padding: 20px 75px;
    border-radius: 30px;
    background: rgb(10, 0, 148);
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    color: white;
    bottom: 150px;
    left: 550px;
    list-style: none;
    text-decoration: none;
    transition: .2s;
}

body .download-btn:hover {
    color: rgb(10, 0, 148);
    background: white;
    outline: 1px solid  rgb(10, 0, 148);
}

.loading {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 300px;
}

.loading .line-box {
    padding: 2px;
    width: 40%;
    height: 28px;
    border: 2px solid rgb(10, 0, 148);
    border-radius: 20px;
}

.loading .line-box .line {
    height: 20px;
    border-radius: 20px;
    background: rgb(16, 1, 224);
    animation: loading 10s forwards cubic-bezier(0,0,0,0);
}

@keyframes loading {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 800px) {
    body .text-1 {
    font-size: 40px;
    color: white;
    margin-top: 250px;
    font: bold;
}

body .text-2 {
    font-size: 30px;
    color: white;
    margin-top: 280px;
    font: bold;
}

body .logo-img {
    height: 250px;
    width: 250px;
    position: absolute;
    left: 70px;
    top: 230px;
}

body .download-btn {
    border: 0;
    outline: 1px solid white;
    border-radius: 30px;
    position: absolute;
    left: 100px;
    bottom: 100px;
    background: rgb(10, 0, 148);
    font-size: 10px;
    cursor: pointer;
    color: white;
    list-style: none;
    text-decoration: none;
    transition: .2s;
}

.loading {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading .line-box {
    padding: 2px;
    width: 40%;
    height: 28px;
    border: 2px solid rgb(10, 0, 148);
    border-radius: 20px;
}

.loading .line-box .line {
    height: 20px;
    border-radius: 20px;
    background: rgb(16, 1, 224);
    animation: loading 10s forwards cubic-bezier(0,0,0,0);
}
}