*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(234, 251, 255);
   font-family: Arial, Helvetica, sans-serif;
}
.hero{
    text-align: center;
    padding: 20px;
}
.hero li{
list-style-type: none;
    background-color: #ccc;
    display: inline-block;
    padding: 0;
}
.hero a{
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    color: black;
    transition: 0.3s ease;
}
.hero a:hover{
    background-color: darkgray;
    color: white;
}
.hero-content h1{
    color: #375;
    margin-top: 20px;
    font-size: 36px;
}
.hero-content p{
    color: rgb(37, 128, 4);
    font-size: 22px;
    margin-top: 10px;
    
}
.sobre h2{
    text-align: center;
    margin: 40px 0 20px;
}
.container {
    display: flex;
    gap: 40px;
    padding: 20px;
    justify-content: center;
    
}


.card1 {
    min-width: 200px;
    height: 300px;
    background: #1e293b;
    border-radius: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
    padding: 20px;
    transition: 0.3s ease;
}
.card1:hover{
    transform: scale(1.05);
}
.projetos h2{
    text-align: center;
    margin-top: 70px;
}
.carousel{
    margin: 50px auto;
    width: 90%;
    border: 10px solid rgba(173, 248, 255, 0.565);
    display: flex;
    overflow: hidden;
    border-radius: 40px;
    background-color: rgb(200, 251, 255);
    padding: 10px 0;
}

.group{
    display: flex;
    align-items: center;
    gap: 1em;
    animation: spin 40s linear infinite alternate;
}
.card2{
    flex: 0 0 5em;
    height: 5em;
    background: rgb(100, 151, 175);
    font-size: 3rem;
    border-radius: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card2 a{
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding-top: 37%;
    text-align: center;
}
.card2:hover{
    background-color: rgb(120, 255, 255);
    color: white;
    transform: scale(1.1);
    transition: 0.3s ease;
}
@keyframes spin{
    from{ translate: 1%;}
    to{translate:-50%;}
}
footer{
    text-align: center;
    padding: 20px;
    background-color: #ccc;
    margin-top: 150px;
}