body, h1, p, a {
    margin: 0;
    padding: 0;
}

.header, .main-content, .linkedin-link {
    background-color: #25274d;
}

header {
    padding: 20px;
    text-align: center;
    color: #aaabb8; /* Choose a color that contrasts well with the background */
}

main {
    padding: 40px;
    text-align: center;
    color: #aaabb8; /* Ensure text is readable against the background color */
}

a {
    display: inline-block;
    padding: 10px 20px;
    color: #aaabb8;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

a:hover {
    opacity: 0.8;
}

/* Add media queries to ensure responsiveness on different devices */
@media (max-width: 600px) {
    header, main {
        padding: 10px;
    }
}
