/* styles-large.css - Styles for screens larger than 780px */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #82F4E736;
    width: 100%
}

header {
    background: #2A7E50;
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #282525;
    text-decoration: none;
    font-size: revert-layer;
    background-color: azure;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.hero {
    background: url('banner.png') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
}

