@import url('https://fonts.googleapis.com/css2?family=BioRhyme+Expanded:wght@200;300;400;700;800&family=BioRhyme:wght@200..800&display=swap');
:root{
    --text: #0e2429;
    --main-color: #36C4B6;
    --main-color-2: #EA4681;
    --secondary-color: #106B5B;
    --secondary-color-2: #6D1A56;
    --secondary-color-3: #E1F56B;
    --tertiary-color: #EEFEAC;
    --tertiary-color-2: #F9FFE0;
    --background-color: #FFE5F2;
    --bakground-color-2: #E9FFFD;
  
}
*{
    box-sizing: border-box;
}
a{
    all: unset;
    cursor: pointer;
}
#activities-main{
    background-image: url(../images/background-texture.svg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 2000px;
    background-position: center;
    margin: 0 auto;
}
.activities-wrap{
    margin: 0 auto;
    padding: 0 2.4em;
    text-align: center;
}
.activities-row{
    display: flex;
    text-align: center;
    padding-bottom: 4.5em;
    justify-content: space-around;
    margin: 0 auto;
    
}
.activity{
    max-width: 40em;
}
.activity-title{
    font-family: BioRhyme, monospace, sans-serif;
    color:var(--secondary-color);
    margin: auto;
    font-weight: 800;
    font-size: 1.8em;
    line-height: 125%;
    margin-bottom: 1.5em;
}
.ativity-info{
    font-family: BioRhyme, monospace, sans-serif;
    color: var(--text);
    margin: auto;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 125%;
    max-width: 1000px;
    

}

@media screen and (max-width: 1195px){
    .activities-row{
        flex-direction: column;
        margin: 0 auto;
        padding-bottom: 1em;
    }
    .activity{
        margin: 0 auto;
    }
    .activity-title{
        margin-top: 1.3em;
        font-size: 1.5em;
    }
    

}
@media screen and (max-width: 600px){
    .ativity-info{
        font-size: 1.2em;
    }
    .activity-title{
        margin-bottom: .8em;
        margin-top: 1.2em;
    }


}