@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,100&family=Roboto:wght@400;900&display=swap');
:root {
    background: #d4d4d4;
}
header {
    position: fixed;
    top: 0px;
    left: 0;
    display:flex;
    width: 100%;
    height: min-content;

}

#header-contents {
    display:flex;
    margin-left: auto;
    margin-right: auto;
}
#whiteBar-header {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 80px;
    top: inherit;
    left: 0px;
    filter: drop-shadow(0px 0px 3px grey);
}
#icon-title {
    display: flex;
    
    padding-left: 10px;
    padding-top: 10px;
}
.linkHome {
    width: min-content;
    height: min-content;
}
#icon-header {
    position: relative;
    width: 50px;
    height: 50px;
    border: 2px solid grey;
    border-radius: 50%;
    background-color: #262626;
    filter: drop-shadow(0px 0px 2px grey); 
    transition: filter 0.5s;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color, 0.5s;
}
a:hover {
    color: skyblue;
}
a:active
{
    transition: color, 0s;
    color: red;
}
#icon-header:hover {
    filter: drop-shadow(0px 0px 3px skyblue); 

}
#icon-header:active {
    transition: color, 0s;
    filter: drop-shadow(0px 0px 3px red); 

}
#title-header {
    position: relative;
    margin-bottom: 0;
    margin-left: 5px;
    font-family: monospace;
    font-weight: 100;
    letter-spacing: -2px;
    top: -15px;
    color: grey;
}
#subTitle-header {
    position: relative;
    margin: 0;
    margin-top: -18px;
    margin-left: 5px;
    letter-spacing: -1px;
    color: #5e5e5e; 
    max-width: 200px;
    line-height: -40px;
    font-family: 'Roboto', monospace;
}
.referrals {
    position: relative;
    height: min-content;
    width: min-content;
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #3d3d3d;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 50px;
}
.referrals > *:not(:first-child) {
    padding-left: 30px;
    width: min-content;
}
html {
    position: relative;
    min-height: 100vh;
}

footer {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    margin-top: 30px;
}
#rect-footer {
    position: absolute;
    height: 80px;
    width: inherit;
    margin-top: auto;
    margin: 0;
    background-color: #919191;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 9px 0px inset;
}
#icons-footer {
    position: relative;
    width: min-content;
    display: flex;
    margin: auto;
    margin-top: 15px;
}
#icons-footer > a {
    margin: auto;
}
#icons-footer > a > img {
    width: 50px;
    filter: drop-shadow(0px 0px 2px grey);
    transition: filter 0.5s;
}
#icons-footer > a > img:hover {
    filter: drop-shadow(0px 0px 3px skyblue); 
}
#icons-footer > a > img:active {
    transition: color, 0s;
    filter: drop-shadow(0px 0px 3px red); 

}