html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Aleo', sans-serif;
    color: #0E79A7;
    background-color: #fff;
}

:root {
    --main-height: 60vh;
}

a {
    text-decoration: inherit;
    color: inherit;
}

header {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #0E79A7;
    height: calc(20% - 22px);
    position: relative;
}

main {
    height: 65%;
    overflow-y: scroll;
    position: relative;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 5px;
    text-align: center;
    height: calc(8% - 9.4px);
}

#main-nav  {
    padding: 5px;
    border-bottom: 2px solid #0E79A7;
    height: calc(7% - 12px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-nav .menu-item {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 1;
    height: calc(100% - 8px);
    margin: 2px;
    border: 1px solid #0E79A7;
    padding: 2px 5px;
    text-decoration: none;
    color: #0E79A7;
    font-weight: bolder;
    transition: 0.5s;
    cursor: pointer;
}

#main-nav .menu-item:hover {
    background-color: #0E79A7;
    color: #fff;
}

.selected-page {
    background-color: #0E79A7 !important;
    color: #fff !important;
}

#main-logo {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    max-width: 20%;
}

#header-text-container {
    display: inline-block;
    vertical-align: middle;
}

#title {
    margin: 0;
}
#tagline {
    margin: 0;
    font-weight: normal;
}

.fish-pin {
    position: absolute
}

#fish-pin-1 {
    rotate: 45deg;
    top: 5px;
    left: 5px;
}

#fish-pin-2 {
    rotate: 135deg;
    top: 5px;
    right: 5px;
}

#fish-pin-3 {
    rotate: 315deg;
    bottom: 5px;
    left: 5px;
}

#fish-pin-4 {
    rotate: 225deg;
    bottom: 5px;
    right: 5px;
}

.page {
    min-height: 100%;
    transform: translateX(-100%);
    transition: 0.5s;
    position: absolute;
    width: 100%;
}

.current-page {
    transform: translateX(0);
}

.home-image-container {
    height: var(--main-height);
    overflow: hidden;
    position: relative;
}

.home-image-container h2 {
    font-family: 'Montagu Slab', serif;
    position: absolute;
    color: white;
    margin: 0;
    text-align: center;
    background-color: rgba(51, 51, 51, 0.725);
    padding: 3px;
}

.down-button {
    position: absolute;
    cursor: pointer;
    border: 1.2px solid white;
    width: 25px;
    height: 25px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(51, 51, 51, 0.725);
}

.down-button-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home-image-1 {
    background: #fff url(https://santabarbara.queenmontoyasolutions.com/images/main-home.jpg) right top/cover no-repeat;
}

#home-image-1 h2 {
    top: 20px;
    right: 30px;
}

#home-image-2 {
    background: #fff url(https://santabarbara.queenmontoyasolutions.com/images/home-2.jpg) center top/cover no-repeat;
}

#home-image-2 h2 {
    top: 10px;
    left: 15px;
}

#home-image-3 {
    background: #fff url(https://santabarbara.queenmontoyasolutions.com/images/home-3.jpg) center center/cover no-repeat;
}

#home-image-3 h2 {
    top: 15px;
    left: 10px;
}

#home-image-3 .down-button {
    width: unset;
    font-size: larger;
    padding: 2px;
}