#topbar{
    padding: 5px;
    background: rgba(255,255,255,0.05);
    display: flex;
    flex-direction: row;
    justify-content: left;
}
#topbar *{
    margin: 0px;
    margin-right: 1%;
}
#topbar button{
    background: rgba(255,255,255,0.05);
    color: white;
    border: none;
    border-radius: 5px;
}
.arrows{
    background: rgba(255,255,255,0.05);
    color: white;
    border: none;
    border-radius: 360px;
    padding: 5px;
    margin: 5px;
}
#controls{
    display: flex;
    justify-items: left;
    align-items: center;
}
*{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#modal{
    position: fixed;
    width: 75%;
    height: 75%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.75);
    z-index: 999;
    visibility: hidden;
    border: 2.5px solid white;
    border-radius: 5px;
    padding: 15px;
    overflow: scroll;
}
#modalimg{
    width: 100%;
    cursor: pointer;
}
#modaltitle{
    width: 95%;
    height: 5%;
}
#modalclose{
    width: 5%;
    background: none;
    margin: 0px;
    border: 2.5px solid white;
    border-radius: 5px;
    color: white;
}
html{
    background-color: black;
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    margin: 0px;
}
#document{
    margin: 30px;
}
img{
    border-radius: 5px;
}
a img{
    margin-right: 5px;
}
.row{
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 15px;
}
.row2{
    display: flex;
    justify-content: center;
    height: 50%;
}
#imageindicator{
    font-size: 75%;
    color: gray;
}
a{
    border: 2.5px solid #0066ff;
    border-radius: 10px;
    padding: 15px;
    background: none;
    color: white;
    margin: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
a, button{
    cursor: pointer;
    transition: all 0.25s;
}
#github{
    border: 2.5px solid #ffffff;
}
a:hover, button:hover{
    filter: brightness(50%);
}
a:active, button:active{
    filter: brightness(150%);
}
.ignore{
    all: revert;
}