
/* Style page content */
.main {
    margin-left: 160px; /* Same as the width of the sidebar */
    padding: 0px 10px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

/*Text*/
body {
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-size: 20px;
    font-style: normal; /*other options: italics, bold*/
    font-variant: normal; /*whether all caps, lower caps*/
    font-weight: 500;
    color: #778899;
    text-align: center;
}

#booklist {
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-size: 15px;
    font-style: normal; /*other options: italics, bold*/
    font-variant: normal; /*whether all caps, lower caps*/
    font-weight: 500;
    color: #778899;
    text-align: left;
}

.container {
    position: relative; /*Used to pad content inside of them. Used to create a fixed width*/
    width: 60%; /*Ensures that each image takes up 60% of the horizontal screen*/
}
/* Image */
.image {
    opacity: 1;
    display: inline-block; /*Does not add a linebreak, allows elements ot sit next to one another*/
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.image:hover .text {
    visibility: visible;
    opacity: 0;
}

.overlay {
    position: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    color: #778899;
    font-size: 16px;
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-style: italic;
}

.container:hover .overlay {
    opacity: 1;
}

/* Style all font awesome icons */
.fa {
    padding: 8px;
    font-size: 18px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}
.fa-linkedin {
    background: #007bb5;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-google {
    background: #dd4b39;
    color: white;
}

.fa-spotify {
    background: #1DB954;
    color: white;
}

.fa-strava {
    background: #FC4C02;
    color: white;
}

.fa-book {
    background: #4682B4;
    color: white;
}

.fa-photo {
    background: #6A5ACD;
    color: white;
}

.fa-home {
    background: #B22222;
    color: white;
}

