@font-face { font-family: 'CS'; src: url('../fonts/cs_regular.ttf');}
@font-face { font-family: 'ethnocentric'; src: url('../fonts/ethnocentric.otf');}
@font-face { font-family: 'Neuropol'; src: url('../fonts/GiantRobotArmy-Medium.ttf');}

*{
    margin: 0;
    padding: 0;
}

html{
    background-image: linear-gradient(-225deg, #69EACB 0%, #EACCF8 48%, #6654F1 100%);
	background-size: cover;
}

h1{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'ethnocentric';
}

p{
    color: white;
}

.cards{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card{
    min-width: 350px;
    height: 550px;
    min-height: 550px;
    width: 350px;
    border: 3px solid white;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    cursor: pointer;
}

.card:hover{
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    margin-top: 0px;
}

a{
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

.top_content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;   
}

.top{
    background-color: white;
    width: 100%;
    text-align: center;
    border-radius: 0px 0px 106px 106px / 0px 0px 19px 19px;
}

h2{
    margin: 15px;
    font-family: 'CS';
    font-size: 2em;
}

p{
    font-family: 'Neuropol';
    font-size: 0.8em;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    text-align: justify;
}

.content img{
    width: 90%;
    border-radius: 5px;
    border: 1px solid white;
    margin: 5px;
    margin-bottom: 25px;
}

.footer{
    border-top: 1px solid white;
    padding: 10px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    background-color: rgba(100, 100, 100, 0.8);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
