* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: #164187;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.titulomary {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid black;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover {
    background-color: black;
}

.redondomaryzinha {  
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-image: url(../img/mary-jackson.webp);
    background-size: cover;
    background-position: center;
    margin: 25px -70px 0 0 ;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.redondomaryzinha:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#ladomary{
margin: 25px 45% auto;

}
.divdop,
.divdop02 {
    border-left: 5px solid #00d4ff;
    background-color: #164187;
    width: 85%;
    max-width: 850px;
    margin: 25px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.divdop:hover,
.divdop02:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

p {
    margin-bottom: 12px;
}

.lista-legado {
    margin-left: 20px;
    margin-bottom: 15px;
}

footer {
    background-color: #164187;
    text-align: center;
    padding: 12px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .divdop,
    .divdop02 {
        width: 95%;
        padding: 15px;
    }
}