
body {
    background-color: black;
    color: white;
    font-family: monospace;
}


/* ======= Text ======= */
h1, h2, p {
    color: white; 
}

h1 {
    font-size: 5em;
    white-space: nowrap;
    
}

h2 {
    font-size: 3em;
}

p {
    font-size: 2em;
}


summary {
    font-size: 2em;
    
}

.menu {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    font-size: 2em;
}


/* ======= Links ======= */
a {
    color: yellow;
    text-decoration: none;
    font-size: 1em;
}
a:hover {
    color: white;
    text-decoration: underline

}


/* ======= Blocks ======= */
.wideimage {
    width: 100%;
    display: block;
    margin: auto;
}

.col 
{
    padding-left: 20%;
    padding-right: 20%;
    border: none;
}




.gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.thumb{
    
    height: 20em;
    padding-bottom: 2em;
    padding-right: 1em;
    opacity: 1;
}
.thumb:hover{
    opacity: 0.5;
}

.galleryitem {
    position: relative;
}

.centredtext {
    position: absolute;
    top: 10em;
    left: 0em;
    margin: 0px;   
    color: red;
    
    
}

.pink {
    color:#d604ff;
}

.centre{
    display: flex;
    justify-content: center;
}

.audioplayer {
    width:100%;
}

#btn_backtotop {
    display: none;
    position: fixed;
    bottom: 0%;
    right: 20px;
    font-size: 4em;
    background-color: black;
    border: 0px;
}
#btn_backtotop:hover {
    transform:scale(1.5);
}

#sidemenu {
    position: fixed;
    bottom: 50%;
    left: 20px;
}