@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    color: white;
}

.mainArea{
    width: 100%;
    height: 100dvh;
    background-image: url(./images/download.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.backdropArea{
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(3px);
    padding: 2rem;
    display: flex;
}

.lineArea{
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255,255,255,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.lineArea img{
    width:80%;
    max-width: 400px;
}

.flex{
    display: flex;
    width: 100%;
    max-width: 350px;
}

.vert{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

@media (max-width:450px){
    .flex{
        flex-direction: column;
        gap: .5rem
    }
    .lineArea{
        gap: .5rem
    }
    img{
        margin-bottom: .3rem;
    }
    *{
        font-size: 12px;
    }
}