
#bottom-main {
    float: inline-end;
    width: 100vw;
    background: url(../imagens/texturabottom.jpg) no-repeat center;;
    background-size:cover;
    overflow: hidden;
    position: relative;
    box-shadow: 2px -2px 20px grey;
    z-index: 1;

}
#instrucoes{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;

}
.titulo-instrucoes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 10px;
    width: 160px;
    z-index: 1;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.titulo-instrucoes.visivel{
    opacity: 1;
    transform: translateX(0);
}
.titulo-instrucoes h2{
    background-color: white;
    color: var(--cor-greentext);
    border-radius: 20px;
    padding: 5px;
    font-size: var(--font-size-default2);
    width: 250px;
    text-align: center;

}
.titulo-instrucoes ul{
    color: white;
    font-size: var(--font-size-default2);
    width: 200px;
    margin-top: 20px;
    letter-spacing: 2px;
    line-height: 30px;


}
.titulo-instrucoes li{
    margin-left: 20px ;
}
.bold-font{
    font-weight: 900;
}

.image{
    width: 100px;
    height: 400px;
    align-content: center;
    opacity: 0;
    transform: translateX(100px);

    transition: opacity 0.9s ease-out, transform 0.9s ease-out;

}
.image.visivel{
    opacity: 1;
    transform: translateX(0);
}
.img-titulo{
    width: 100px;
    height: 100px;
    background: url(/imagens/carneicone.png) no-repeat center;
    background-size: cover;
}