body {
    background-color: rgb(0, 0, 0);
    color: white;
   font-size: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; 
}

#title {
    display: flex; 
    flex-direction: column;
    line-height: 1.2; 
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: rgb(132, 14, 201);
    transition: color 0.3s ease;
}

#inscreva-se-btn {
    border: 2px solid rgb(132, 14, 201);
    padding: 10px;
    border-radius: 15px;
    text-decoration: none; 
}

#inscreva-se-btn:hover {
    background-color: rgb(132, 14, 201);
    color: white;
}

h1 {
    font-weight: 200;
    font-size: 2.5rem;
}

main {
    display: flex;
    flex-direction: row;
    gap: 20px; 
}

aside {
    flex: 1;
}

article {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

h2 {
    font-size: 1rem;
    line-height: 1.2; 
    font-family: 'Poppins Medium', sans-serif; 
}

span {
    color: rgb(132, 14, 201);
}

p {
    line-height: 1.5; 
    max-width: 500px;
    font-family: 'Poppins Light', sans-serif; 
    font-size: 1rem; 
}

img {
    max-width: 100%;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
    width: 70%;
}

form [type="submit"] {
    height: 50px;
    width: 50%;
    background-color: rgb(132, 14, 201);
    color: white;
    font-weight: bold;
    border: none; 
}

form [type="submit"]:hover {
    cursor: pointer;
}

input {
    margin-top: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: purple;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.img-zoom{
    transition: transform 0.3s ease;
    
    }
    .img-zoom:hover {
        transform: scale(1.2);
    }
    @media (max-width: 768px) {
        h1 {
            font-size: 1.5rem; 
            line-height: 1.2;  
            margin: 0.5rem 0;  
        }
    }