body,
html {
    background-color: white;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #004289;
    background-image: url(../imgs/BG.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    min-height: 100vh;
}

section {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.logo {
    margin: auto;
    display: block;
}

.rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    width: 300px;
    height: 430px;

    border: 2px solid #fe8108;

    text-align: center;

    overflow: hidden;
}

#imageId {
    border: 2px solid #fe8108;
}

.imagem-gerada {
    width: 446px;
    margin-top: -98px;
}

img {
    width: 90%;
}

video {
    width: 100%;

    aspect-ratio: 9/16;

    margin: auto;
    display: block;
}

.loaderPage {
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;

    background-color: rgba(0, 0, 0, 0.8);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

input,
a {
    width: 100px;
    background-color: #fe8108;

    color: #fff;
    font-family: Arial;
    font-size: 16px;
    text-align: center;

    border: none;
    border-radius: 25px;

    font-weight: 600;
    text-decoration: none;

    padding: 12px 24px;
    margin: 0;

    cursor: pointer;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    gap: 20px;
}

span {
    font-family: arial;
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px;
}

/* .lingueta img{
    width: 25%;
} */
.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}