body {
    margin: 0;
    padding: 0;
    background: #471f00;
}

div{
    margin: 0;
    padding: 0;
}


main {
    width: 100vw;
    height: 100vh;
    background:
        conic-gradient(at 50% 50%,
        rgb(0 0 0 / 90%) 5.71% 12.71%,
        rgb(255 111 0 / 20%) 25.71%,
        rgb(0 0 0 / 90%) 39.71%,
        rgb(0 0 0 / 90%) 62.71%,
        rgb(255 111 0 / 15%) 75.71%,
        rgb(0 0 0 / 90%) 88.71%
        );
}

.top-bar {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    width: 100vw;
    height: 80vh;
    display: grid;
    align-content: space-between;
    align-items: center;
    justify-items: stretch;
}

.content-header {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: start;
}

.bar {
    margin-left: 5vw ;
    width: 25vw;
    position: relative;
}

@keyframes alternarImagens {
        0% { opacity: 1; } /* Imagem 1 visível, Imagem 2 oculta */
        50% { opacity: 0; } /* Ambas em transição ou apenas a primeira visível */
        100% { opacity: 1; } /* Imagem 1 visível, Imagem 2 oculta (para loop) */
    }

.bar img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 50%;
}

.bar-yes {
    animation: alternarImagens 0.75s infinite;
}

.content-body {
    width: 100vw;
    height: 60vh;
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/19.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% auto;
}

.glass{
    height: 20vw;
    width: 37vw;
}

.content-footer {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    justify-items: center;
    align-content: space-between;
    align-items: center;
}


.controller {
    height: 5vw;
    display: flex;
;
}

.close {
    rotate: 180deg;
}

.button-1{
    margin: 5px;
    animation: rotateAnimation 4s infinite;
    animation-direction: alternate;
}

.button-2{
    margin: 5px;
    rotate: 78deg;
    animation: rotateAnimation 3.5s infinite;
    animation-direction: alternate;
}

@keyframes rotateAnimation {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }


.start {
    height: 5vw;
    display: flex;
    justify-content: space-around;
}

.start img {
    padding: 5%;
}

.marraia {
    height: 5vw;
    display: flex;
}

.bottom-bar {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-bar img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    rotate: 180deg;
}