* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

h1.logo, h1.logo a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.navbar ul li a:hover {
    color: #d7d2be;
}

footer {
    background-color: black;
    padding: 50px 30px 20px;
    margin-top: -50px;
}

.footerContainer {
    width: 100%;
    padding: 0 30px;
}

.socialicons {
    display: flex;
    justify-content: center;
}

.socialicons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}

.socialicons a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
    text-align: center;
}

.socialicons a:hover {
    background-color: black;
    transition: 0.3s;
}

.socialicons a:hover i {
    color: white;
    transition: 0.3s;
}

.footernav {
    margin: 30px 0;
    width: 100%;
    
}

.footernav ul {
    display: flex;
    justify-content: center;
}

.footernav ul li a {
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
}

.footernav ul li a:hover {
    opacity: 1;
}

.footerbottom {
    background-color: black;
    padding: 20px;
    text-align: center;
}

.footerbottom p {
    color: white;
}