*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
perspective: 1000px;
font-family: Arial, Helvetica, sans-serif;
background: black;
}

.container{
    min-height: 80vh;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    perspective: 1000px;

}

.card{
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    display: flex;
    background-color: black;
    width: 715px;
    height: 409px;
    box-shadow: 0 20px 20px rgba(0,0,0,0.2), 0px 0px 50px rgba(0,0,0,0.2);
    border-radius: 30px;
    transform-style: preserve-3d;

}

div.imagem{
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.75s ease;
}
img{
    transition: all 0.75s ease;
    position: absolute;
    width:100%;
    height: 100%;
    border-radius: 30px;
}

.loading{
    transition: all 1s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1;
}

.loading h1{
    width: 100%;
    text-align: center;
    color: rgb(160, 100, 0);
    margin: 0;
    position: absolute;
    top: 40%;
}
.loading b{
    width: 100%;
    text-align: center;
    color: rgb(160, 100, 0);
    margin: 0;
    position: absolute;
    top: 50%;
}

.loads {
    border: rgb(87, 52, 0);
    border-style: solid;
    border-width: thin;
    background: rgb(14, 14, 14);
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    
}