*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Merriweather';
}

.wrapper {
    min-height: 200vh;
    background:url('../images/New_banner.png') no-repeat center/cover;
    
  }
.container{
    max-width: 1100px;
    margin: 0 auto;
}


.header-flex{
    display: flex;
    flex:1;
    align-items: center;
    justify-content: center;
    background-color: #fbffb7;
    margin: 5px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    height: 5rem;
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 1px;
    border-top-width: 1px;

}
.items-flex,.items-flex-col,.items-flex-inside{
    display: flex;
    flex:1;
    /*background-color: #c351ba;*/
    background-color: #5356FF;
    margin: 5px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 1px;
    border-top-width: 1px;
    gap:5px;
    padding: 1rem;
}
.items-flex-col{
    flex-direction: column;
}
.items-flex-inside{
    border:none;
    box-shadow: none;
}
.header-flex .hero{
    text-align: center;
    font-size: 30px;
}


.item,.topic-card{
    display: flex;
    background-color: white;
    padding: 10px;
    flex-direction: column;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 1px;
    border-top-width: 1px;
    flex:1;
    gap:2rem;

}

.topic-card{
    flex-direction: row;
    flex:1;
    justify-content: center;
    margin-left: 30%;
    margin-right: 30%;
}

.topic-text{
    align-self: flex-start; 
  font-size: 1.5rem; 
  font-weight: bold;
  width: 100%; 
}
/*.item{
    animation-name: cardMove;
    animation-duration: 2.0s;
    animation-timing-function: ease-in;
}
@keyframes cardMove {
    from {
        transform: translateX(-1800px);
    }
    to {
        transform: translateX(0px);
    }
}*/


a{
    text-decoration: none;
    color: black;
}
ul{
    list-style: none;
}

.btn,btn:hover{
    display:inline-block;
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 1px;
    border-top-width: 1px;
    padding: 1rem 2rem;
    cursor: pointer;
    margin:2rem auto;
    
}


.btn:hover{
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-width: 1px;
    transition: 0.5s;
}

img{
    width:90%;
    height:45%;
    border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-style: solid;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 1px;
    border-top-width: 1px;
}

.info{
    background-color: antiquewhite;
}

@media(max-width:768px){
    .items-flex{
        flex-direction: column;
    }
    .items-flex{
        font-size: 15px;
    }
    .items-flex-inside{
        flex-direction: column;
    }
    .topic-card{
        flex-direction: column;
    }
    .header-flex .hero{
        text-align: center;
        font-size: 20px;
    }
}