html {
    background:rgb(52,50,51);
    -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'aoLogoText';
  font-style:  normal;
  font-weight: 100;
  src: url("font/ruthie.regular.ttf") format('truetype');
}

body {
    margin: 0 auto;
    max-width: 1024px;
    padding: 2em 2em 4em;
    background:rgb(52,50,51);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
    color:rgb(239,218,185);
    }

.container {
    position: relative;
    }

.container-left {
    position: absolute;
    top: 30%;
    left: 55%;
    }

.container-right {
    position: absolute;
    top: 30%;
    right: 55%;
    }

.download-bar {
    position: relative;
    /*background:rgb(52,50,51);*/
    margin-left: 90%; 
    margin-right: 0%;
    }

img{
    /*max-height:500px;*/
    /*max-width:500px;*/
    height:auto;
    width:auto;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 25px;
    padding-left: 0px;
    }

.img-glyph{
    height:32px;
    width:32px;
    /* Filter value generator:  https://codepen.io/sosuke/pen/Pjoqqp */
    filter: invert(95%) sepia(84%) saturate(1000%) hue-rotate(318deg) brightness(100%) contrast(103%);
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.img-left {
    /* Image set left side */
    width:66%;
    display: block; 
    margin-left: 0%; 
    margin-right: 33%;
    }

.img-right {
     /* Image set right side */
    width:66%;
    display: block; 
    margin-left: 33%; 
    margin-right: 0%;
    }

.logo-top-right {
    position: absolute;
    top: 32px;
    right: 16px;
    font-family: "aoLogoText";
    font-size: 60px;
    color:rgb(255,195,31);
    }

.card {
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    padding: 0.01em 16px;
    background:rgb(248,246,242);
    color:rgb(87,76,79);
    text-align: left;
    border-radius: 8px;
    }

b {
    font-weight: 600;
    color:rgb(255,195,31);
    }

strong {
    font-weight: 600;
    color:rgb(87,76,79);
    }

footer {
    max-width: 1024px;
    }

.footer-info {
    text-align: left;
    background:rgb(52,50,51);
    color:rgb(239,218,185);
    border-radius: 8px;
    border: 2px solid;
    border-color: rgb(255,195,31);
    padding-top: 3px;
    padding-right: 20px;
    padding-bottom: 3px;
    padding-left: 20px;
    }

.button {
    position: relative;
    cursor: pointer;
    background:rgb(52,50,51);
    color:rgb(239,218,185);
    border-radius: 8px;
    border: 2px solid;
    border-color: rgb(255,195,31);
    text-align: center;
    font-size: 20px;
    padding: 5px;
    margin: 5px;
    width: 150px;
    transition: all 0.5s;
    }

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    }

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
    }

.button:hover span {
    padding-right: 25px;
    background:rgb(255,195,31);
    color:rgb(52,50,51);
    width: 120px;
    }

.button:hover span:after {
    opacity: 1;
    right: 0;
    }

a:link {
    color:rgb(239,218,185);
    background-color: transparent;
    text-decoration: none;
    }

a:visited {
  color: rgb(239,218,185);
  background-color: transparent;
  text-decoration: none;
    }

a:hover {
  color: rgb(255,195,31);
  background-color: transparent;
  text-decoration: underline;
    }

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color:rgb(248,246,242);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: rgb(87,76,79);
    display: block;
    transition: 0.3s;
    }

.sidenav a:hover {
    color: rgb(255,195,31);
    font-size: 20px;
    }

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    }

#main {
    transition: margin-left .5s;
    padding: 16px;
    }

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
    }
