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

html, body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('background-hero.jpg');
    background-size: cover;
    background-position: center;
}

main {
    min-height: 80%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* background-color: rgba(117, 152, 243, 0.5); */
    background: rgba(171, 164, 225, 0.5);
    color: white;
}

header h1 {
    font-size: 1.5rem;
}

nav button {
    background: none;
    border: none;
    cursor: pointer;
}



.hero {
    /* background-image: url('background-hero.jpg');
    background-size: cover;
    background-position: center; */
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(171, 164, 225, 0.5);
    z-index: 1;
}

.hero h2 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.services {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f5f5f5;
    height: 100%;
}

.services h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer {
    padding: 1rem;
    text-align: center;
    background-color: #333;
    color: white;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
