body {
    font-family: 'Epilogue', serif;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.upper-bar {
    padding: 2%;
    display: flex;
    flex-direction: row;
    height: 10%;
}

.upper-bar .logo {
    width: 15%;
}

/* The container <div> - needed to position the dropdown content */
.pages__item {
    position: relative;
    display: inline-block;
}

.item__submenu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5em;
}

.item__submenu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

/* #TODO: Refactor arrow styles to be used for each page item */
.arrow {
    position: absolute;
    top: 50%;
    right: 0;
}

.arrow_up {
    display: none;
}

.pages__item:hover .item__submenu {display: block;}
.pages__item:hover .arrow_up {display: block;}
.pages__item:hover .arrow_down {display: none;}
.item__submenu a:hover {background-color: #ddd;}


.upper-bar .navbar {
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.upper-bar .navbar .pages {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.pages__button {
    padding: 0.75em 1.75em;
    background: transparent;
    font-weight: bold;
    border: 2px solid black;
    border: none;
    cursor: pointer;
}

.content {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.content .content-item {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2%;
}

.title {
    padding-top: 1em;
    font-size: 80px;
    font-weight: 700;
    line-height: 0.8em;
    padding-right: 1.8em;
}

.subtitle {
    font-size: 23px;
    padding-right: 5em;
    color: hsl(0, 0%, 41%);
}

.clients-logos {
    height: 10%;
    width: auto;
    display: flex;
    flex-direction: row;    
    justify-content: space-between;
}

.client-logo-item {
    padding: 0.5em 1.75em 0 0;
}

.client-logo-item > img {
    width: 100%;
}

img.big-image {
    width: 100%;
    height: auto;
    max-width: 440px;
    min-width: 360px;
}


.bordered-button {
    padding: 0.75em 1.75em;
    background: transparent;
    font-weight: bold;
    border: 2px solid black;
    border-radius: .75em;
    cursor: pointer;
}

#learn-more-button {
    color: white;
    background-color: black;
}

#learn-more-button:hover {
    color: black;
    background-color: white;
}

#login-button {
    border: none;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a {
    color: hsl(228, 45%, 44%); 
}