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;
     position: relative;
    z-index: 11;
    animation: header 2s ease forwards;
}


@keyframes header {
  from {
    transform: translateY(-50px);
  }

  to {
    transform: translateY(0);
  }
}


header h1{
    margin: 10px;
}
.content .main{
    margin: 20px;
}
.logo{
    transition: transform 1s ease;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: white;
    margin: 10px;
}
.logo img{
    height: 70px;
    width: 70px;
}

nav{
    z-index: 10;
    transition: transform 0.75s ease;
	position: sticky;
	top: 0;
    display: flex;
    background-color: #0ca36e;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
    animation: nav 2s ease forwards;
}


@keyframes nav {
  from {
    transform: translateY(-150px);
  }

  to {
    transform: translateY(0);
  }
}

nav a{
    text-decoration: none;
    color: white;
    padding: 10px 50px;
    animation: nav 3s ease forwards;
}


nav a:hover{
    transform: scale(1.01);
    background-color: #12aa75;
    font-size: bold;
}


.rotate {
  transform: rotate(360deg);
  transition: transform 1s ease;
}


.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;
    animation: fadeIn 0.6s ease forwards;
}
.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;
    animation: fadeIn 0.6s ease forwards;
}
.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;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


footer{
    background-color: #33b983;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
}