/*Assets*/
@font-face {
    font-family: 'Quicksand';
    src: url(/assets/fonts/Quicksand-Regular.ttf);
    font-weight:normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url(/assets/fonts/Quicksand-Bold.ttf);
    font-weight:bold;
}

/*Overrides*/
html {
    font-family: 'Quicksand';
    background: url(/assets/images/background.jpg) no-repeat center center fixed;
    background-size:cover;
    font-size: 17px;
    line-height:1.3;
    letter-spacing: 0.5px;
}

/*IDs*/
#contentHolderMain {
    max-width: 620px;
    padding: 20px;
    margin: auto;
    min-height: 720px;
    color:white;
    background-color:rgba(0, 0, 0, 0.75);
    border-radius: 1rem;
}

#profilePicture {
    border-radius: 50%;
    max-height: 200px;
    max-width: 200px;
}

#navbar {
    background-color: #001a33; 
    padding:10px; 
    margin:0 -25px 20px -25px;
    font-size: 18px;
}

#currentPage{
    font-weight: bold;
}

#errorImg{
    max-height: 350px;
}

/*Classes*/
.textCenter {
    text-align: center;
}

.objectCenter{
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.recommendationQuote{
    font-style: italic;
    font-weight: bold;
    font-size:18px;
}

/*Link stuff*/
.linkNotExisting{
    color: gray;
}

a {
    color: #4da9ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*Gallery*/
#gallery{
    display: flex;
    flex-wrap: wrap;
}

#gallery.imageHalf a{
    width: 50%;
}

@media only screen and (max-width: 600px){
    #gallery.imageHalf a{
        width: 100%;
    }
}

#gallery img{
    width: calc(100% - (5px * 2));
    margin: 5px 5px 0 5px;
    border-radius: 1rem;
}

/*Tables*/
table{
    margin-bottom: 10px;
    max-width:100%;
}

td:first-child:before{
    content: "❄ ";
}

.homepageTable td:nth-child(1){
    width:160px;
    white-space: nowrap;
}

.homepageTable td:nth-child(2){
    width:auto;
    word-break:break-word;
}