@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #100E09;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app {
    display: flex;
    flex-direction: column;
    background-color: #212122;
    height: 600px;
    width: 30vw;
    border-radius: 40px;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img img {
    margin-block: 15px;
    height: 216px;
    width: 216px;
    border-radius: 30px;
}

.app h1 {
    font-family: "Ubuntu", sans-serif;
    text-align: center;
    color: #F5F5F5;
}

.preload {
    width: 100%;
    display: flex;
    padding-top: 5vh;
    justify-content: center;
}

.load {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #F5F5F5;
    border-top-color: #212122;
    animation: spin 0.8s linear infinite;
}

.txt {
    padding-top: 3vh;
    font-family: "Ubuntu", Italic;
    text-align: center;
    color: #f5f5f593;
}


.download {
    color: #3469db;
    text-decoration: none; 
    text-align: center;
    font-family: "Ubuntu", Italic;
    font-weight: 500;
    margin-top: auto;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1050px) {
    .app {
        background-color: #212122;
        width: 80vw;
        border-radius: 40px;
    }
}
