@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    transition: all 0.25s ease-out;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    inset: 0;
    place-content: center;
    overflow: hidden;
    color: white;
}

.logo {
    position: fixed;
    top: 20px;
}

.download-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.download-btn{
    position: relative;
    background: #4285F4;
    color: #fff;
    width: 290px;
    padding: 18px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 400;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    transition: background 0.3s ease;
}

.download-btn:hover{
    background: #2874F3;
}

.download-btn i{
    margin-left: 5px;
}

.countdown{
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown span{
    color: #0693F6;
    font-size: 1.5em;
    font-weight: 800;
}

.pleaseWait-text{
    font-size: 1.1em;
    font-weight: 600;
    display: none;
}

.manualDownload-text{
    font-size: 1.1em;
    font-weight: 600;
    display: none;
}

.manualDownload-link{
    color: #0693F6;
    font-weight: 800;
    text-decoration: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.gradient {
    --size: 250px;
    --speed: 20s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(rgba(55, 235, 169, 0.85), #5b37eb);
    animation: rotate var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    position: absolute;
}

@media (min-width: 720px) {
    .gradient {
        --size: 500px;
    }
}

a {
    color: #2874F3;
    text-decoration: underline;
    font-weight: bolder;
}
