 @font-face {
    font-family: "CuteSunrise";
    src: url('CuteSunrise.otf') format('opentype');
  }

body {
  color: #333333; 
  background-color: #f7f7f7;
}

.arvoreCresce{
    display: grid;
    grid-template-columns: auto 800px auto;
    gap: 30px;
    align-items: flex-end;
    justify-content: space-evenly;
    align-content: center;
    justify-items: center;
}

.arvore{
    width: 350px;
    height: 600px;
    background-image: url("img/fasesArvorepequena1.jpeg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: animacao 2s steps(3) forwards;
    animation-timeline: scroll();
    animation-fill-mode: both;
    
}
@keyframes animacao{
     0% { background-image: url("img/fasesArvorepequena1.jpeg"); height: 600px; }
    50% { background-image: url("img/fasesArvoremedia2.jpeg"); height: 650px; }
    100% { background-image: url("img/arvore1.png"); height: 600px; }
}

#noticia {
    width: 100%;
	padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#noticia a {
	text-decoration: none;
	color: #0066cc;
}

#line1 {
	display:flex;
	font-size: 20px;
	margin-bottom: 10px;
}

#line1 p {
	margin-right: 5px; 
}

.content {
	margin-bottom: 40px;
}

.title {
    color: #111827;
    font-size: 2.5rem;
    line-height: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.title h1 {
	margin-top: 0;
}

.desc {
    margin-top: 0.5rem;
    color: #6B7280;
    font-size: 20px;
    line-height: 1.6rem;
    margin-bottom: 20px;
}


#image img {
	max-width: 100%;
	height: auto;
    margin-top: 30px;
}

#corpoContent {
    font-size: 18px;
    line-height: 1.8;
    font-family: 'CuteSunrise';
    padding-right: 10%;
    text-align: center;
}

#corpoNoticia h2 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

@media (max-width: 700px) {
  main {
    flex: 100%;
  }
