body{
    background-color: #008c5c;
    margin: 0;
    padding: 0;
}
header{
    width: auto;   
    background-color: #33b983;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    color: white;
}
header h1{
    margin: 10px;
}
.content .main{
    margin: 20px;
}
.logo{
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: white;
    margin: 10px;
}
.logo img{
    height: 70px;
    width: 70px;
}
nav{
	position: sticky;
	top: 0;
    display: flex;
    background-color: #0ca36e;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

nav a{
    text-decoration: none;
    color: white;
    padding: 10px 50px;
}

nav a:hover{
    transform: scale(1.01);
    background-color: #12aa75;
    font-size: bold;
}

.content{
    display: flex;
    max-width: 100;
    height: auto;
}
.card0{
    background-color: white;
    flex: 0 0 60%;
    width: 50vh;
    min-height: 500px;
	height: auto;
    margin: 5vh;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px -4px #000000; 
    box-shadow: 0px 0px 15px -4px #000000;
}
.card0 p{
	hyphens: auto;
	text-align: justify
}
.card0 img {
	float: right;
	margin-left: 20px;
	border-radius: 8px;
	max-width: 400px;
	max-height: 400px;
 }
.card1{
    background-color: white;
    flex: 0 0 30%;
    width: 30vh;
    margin: 5vh;
    height: 500px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px -4px #000000; 
    box-shadow: 0px 0px 15px -4px #000000;
}
.card1 .news{
    border-bottom: 1px;
}
.card1 .news-content{
    margin: 20px;
}
.card0:hover, .card1:hover{
    -webkit-box-shadow: 0px 0px 16px -5px #3a812c; 
    box-shadow: 0px 0px 16px -5px #3a812c;
}
footer{
    background-color: #33b983;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
}