html, body {
    height: 100%;
    font-family: 'Courier New';
}

body {
    display: flex;
    flex-direction: row;
    background-image: url("src/img/background.jpg");
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.content {
    display: flex;
    flex-direction: column;
    margin-left: 3vh;
}

.sidebar {
    display: flex;
    flex-direction: column-reverse;
    right: 0;
    bottom: 0;
    position: fixed;
}

#image-subtitle {
    color: white;
    font-size: 1.5vh;
}

#image-subtitle:hover .tooltip-content {
    visibility: visible;
}

#image-subtitle .tooltip-content {
    visibility: hidden;
    width: 22vh;
    background-color: white;
    font-size: 2vh;
    color: #333;
    padding: 1vh;
    border-radius: 3px;
    text-align: center;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    bottom: 100%;
}

#image-subtitle .tooltip-content::after {
    content: "       ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

#image-subtitle .tooltip-content::after {
    content: "       ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
}

/* #info-icon {
    content: url("src/ico/info-outline.svg");
    filter: invert(100);
    height: 2.2vh;
    padding-right: 1.5vh;
} */

#github-icon, #email-icon {
    filter: invert(100);
    height: 6vh;
    padding-bottom: 2vh;
    padding-right: 3vh;
    padding-left: 2vh;
}

#github-icon {
    content: url("src/ico/github.svg");
}  

#email-icon {
    content: url("src/ico/email.svg");
}

#email-icon:hover,#github-icon:hover {
    filter: invert(78%) sepia(85%) saturate(187%) hue-rotate(325deg) brightness(101%) contrast(104%);
}

#footer {
    display: flex;
    position: fixed;
    align-items: center;
    height: 4vh;
    bottom: 0px;
    margin-bottom: 0px;
}

#main-head {
    text-align: left;
    color: white;
    font-size: 4vh;
    font-weight: lighter;   
    /* opacity: 0; */
}