:root {
    --primary-color: #B76D68;
    --secondary-color: rgb(21, 97, 109);
    --tertiary-color: #E08DAC;
    --quaternary-color: #5D707F;
    --quinary-color: #100B00;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Aleo', sans-serif;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: rgba(21, 97, 109, 0.8);
    clip-path: polygon(80% 100%, 20% 100%, 0 70%, 0 0, 100% 0, 100% 70%);
}

#main-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.main-menu-item {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    transition: all 0.5s ease;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.main-menu-icon {
    font-size: 1.6em;
    margin-right: 5px;
    vertical-align: middle;
}

#focus-image-container {
    width: 100%;
    height: 100vh;
    background: #fff url(../images/home-stock-photo.jpg) center center/cover no-repeat;
}