*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: none;
    background-color: rgba(45, 0, 87);
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.conteudo_proj{
    position: relative;
    display: block ;
    border-radius: 0;
    text-align: center;
}
.titulo-recursos{
    display: flex;
    justify-content: center;
    position: relative;
    top: 150px;
    color: #fff;
    font-size: clamp(1.2rem, 5vmin, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 5px 4px rgba(0, 0, 0, 1);
}
#sidel1{
    animation: go-back2 2s;
}
#sider2{
    animation: go-back 2s;
}
#sidel2{
    animation: go-back2 3s;
}
@keyframes go-back {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes go-back2 {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
     }
}
.conteudo{
    text-align: center;
}
.titulo-temas{
    position: relative;
    top: 10vw;
    color: #fff;
    font-size: clamp(1.2rem, 5vmin, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 5px 4px rgba(0, 0, 0, 1);
  }
.div-recursos{
    background-color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
}
.div-recursos2{
    background-color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
}

@media screen and (max-width: 600px) {
    .titulo-recursos{
        top: 100px;
    }
    .conteudo_proj{
            top: 100px;
    }
    li{
        margin-bottom: 25px;
    }
}

