body{
    margin: 0 auto;
    max-width: 1280px;
    font-family: 'Solway', serif;
    background: #222;
    display: flex;
}

/* configurações de estilo do carrosel de imagens*/
#carrosel{
    position: fixed;
    top:0;
    left:0;
    z-index: -1;
    width: 100%;
}

.carrosel-img{
    display: none;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carrosel-img.img-selected{
    display: block;
}

#fade{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: linear-gradient( 120deg, #000000cc, #ffffff11 );
}

/* configurações de estilo do conteúdo da página */
#content{
    margin: auto;
    width: 80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    color: #fff;
}

#title img {
    width: 40%;
}

#text-content{
    max-width: 35%;
    word-wrap: break-word;
}

#passing-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* botões de passagem das imagens */
.passing-btn{
    border: solid 2px #fff;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    margin: 0px 10px 0px 10px;

    cursor: pointer;
}

.passing-btn.selected{
    border: solid 2px #fff;
    background: rgb(241, 167, 47);
    cursor: default;
}

/* configuração do aside, conteúdo posicioando ao lado */
aside{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 15vw;
}

.social-link{
    display: flex;
    justify-content: center;
    margin: 10px 0 10px 0;

    filter: brightness(0);
    transition: .2s filter ease-in;
}
.social-link:hover{
    filter: brightness(1);
}

.icon{
    width: 30px;
    transition: .2s width ease-in;
}
.icon:hover{
    width: 40px;
}

/* configuração de adapatção do layout para mídias */
@media screen and (max-width: 650px) {
    #title{
        display: flex;
        justify-content: center;
    }
    #title img { width: 75%; }
    #text-content {
        max-width: 100%;
        text-align: center;
    }
}

