* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

:root {
    --background-color: linear-gradient(45deg, #220d4b, #1a063f, #110030);
    --background-color2: #362370;
    --initial-color: rgb(255, 255, 255);
    --initial-font: "Roboto";
    --initial-font-size: 1em;
    --initial-weight: 400;
    --title-color: #ffffff;
    --label-color: #336d9c;
    --fonte-secundaria: #679194;
    --border-color: #5d21bd;
    --box-shadow: #773bd6;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    background: var(--background-color);
    font-family: var(--initial-font);
    font-size: var(--initial-font-size);
    font-weight: var(--initial-weight);
}


/*----------------------------------------------------------------*/

.teste {
    width: 80%;
    height: 80%;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.page__teste {
    position: absolute;
    width: 98%;
    display: flex;
    justify-content: space-between;
}

.page__img {
    cursor: pointer;
    border-radius: 50%;
    transition: .4s;
    width: 35px;
    height: 35px;
}

.page__img:hover {
    box-shadow: 0 0 10px var(--box-shadow);
}

.page__img.right {
    transform: rotateY(180deg);
}

#teste__img {
    position: relative;
    width: 100%;
    max-height: 90vh;
    border-radius: 25px;
    transition: .4s;
    
}

#teste__img:hover {
    transform: scale(1.1);
}


.fade {
    animation-name: fade;
    animation-duration: .5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
