/* CSS rules */

body {
    background-color: #7e2b33 !important;
}

cormorant {
    font-family: 'Cormorant Garamond', serif !important;
}

fira {
    font-family: 'Fira Sans', sans-serif !important;
}

roboto {
    font-family:'Roboto Flex', sans-serif;
}

.container-tour-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top:20px;
    padding:10px;
  
    
}

.container-tour {
    width: 300px;
    margin: 0.5%;
    background-color: #ba5d64;
    border-radius: 7%;
    padding: 15px;
    padding-top: 20px;


}



.tour-icon {
    width: 200px;
    height:200px; 
    border-radius: 50%;
}

.tour-title {
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
}

.tour-description {
    font-size: 15px;

}

@media screen and (max-width: 600px) {
    .container-tour-content {
        flex-direction:column;
        align-items: center;
        justify-content: space-evenly;
        padding-bottom: 20px;
    
    }

    .container-tour {
        
        margin: 20px;
    }
}