/*  Colors: https://flatuicolors.com/palette/se  */
body{
	margin: 0;
	font-family: 'Trebuchet MS', sans-serif;
	margin: none !important;
	padding: none !important;
	width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

header{
    background-color: #ff3f34;
    height: 50px;
    width: 100%;
    color: white;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    position: fixed;
    top: 0;
}

footer{
    background-color: #4bcffa;
    height: auto;
    width: 100%;
    color: #1e272e;
    font-size: 12px;
    line-height: 20px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.footer_language{
    cursor: pointer;
    margin: 0 20px;
}

#footer_copyright{
    cursor: pointer;
}


#main_container{
    background-color: #ffc048;
    height: auto;
    overflow: auto;
    padding: 5px 0;  
    margin-top: 50px; 
}

.card{
    height: 250px;
    width: 350px;
    border-radius: 5px;
    background-color: #ff5e57;
    margin: 30px 30px;     
    float: left;
    cursor: pointer;
}

@media (max-width: 850px) {
  
    .card{
        height: 250px;
        width: 90%;
        margin: 20px 5%;     
    }    
}

.card_title{
    top: 0;
    background-color: transparent;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
}

.card_text{
    padding: 20px;
    line-height: 30px;
    font-size: 20px;
}