body {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2C4E80;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    height: 80px;
}

nav {
    display: flex;
    gap: 2rem;
    padding: 10px 0;
    align-items: center;
    font-size: 20px;
    width: 100%;
    height: 100px;
    min-width: 600px;

}
.nav_home_itens {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-inline-start: 10px;

}

.nav-line {
    text-decoration: none;
    /* INICIO */

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* or 26px */

    color: #ffffff;

}

.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
}

.news-item {
    flex: 1 300px;
    max-width: 300px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin: 0.5rem;
    padding: 1rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position:relative;
    bottom: 0;
    width: 100%;
}

button {
    display: flex;
    height: 3em;
    width: 100px;
    align-items: center;
    justify-content: center;
    background-color: #eeeeee4b;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
    background: #fff;
   }
   
   button > svg {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 20px;
    transition: all 0.4s ease-in;
   }
   
   button:hover > svg {
    font-size: 1.2em;
    transform: translateX(-5px);
   }
   
   button:hover {
    box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
    transform: translateY(-2px);
   }

   .btn-text{
    font-size: 1.2em;
   }
   
   a{
    text-decoration: none;
   }

   .nav-line {
    text-decoration: none;
    /* INICIO */

    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 25px;
    line-height: 104.74%;
    /* or 26px */

    color: #ffffff;

}

.nav-line:after {
    content: "";
    position: absolute;
    background-color: #70e92f;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.nav-line:hover {
    color: #70e92f;
    transform: scale(1.2);
}

.nav-line:hover:after {
    width: 100%;
}

h2{
    color: black;
}

h2:hover{
    transform: scale(1.1);
}