* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    background:#555555;
}
body {
    min-height: 100vh;
    display:flex;
    flex-direction: column;
}
footer {
    margin-top: auto;
}
.nav-main {
    background:#222222;
    margin:0px;
}
.nav-main ul {
    list-style-type:none;
    display:flex;
    justify-content:space-evenly;
    padding: 30px;
}
.nav-main a {
    font-size: 30px;
    text-decoration:none;
    color:#c2c2c2;
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
}
.nav-main a:hover {
    color:#ffffff;
}
.nav-current-page {
    text-decoration: underline;
    text-decoration-color: #c2c2c2c2;
    text-decoration-thickness: 2px;
}
.container {
    margin-top: 20px;
    display: flex;
}
.container-image {
    display:flex;
    overflow: wrap;
    align-content: center;
    justify-content: space-around;
    padding: 10px;
}
.center {
    text-align: center;
    align-content: center;
}
.title {    
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
    color:#ffffff;
    margin: 30px 0px;
}
.title-large {
    font-size: 50px;
}
.title-image {
    display:flex;
    width:95%;
    height: fit-content;
    max-height: 80%;
    margin:25px;
}
.img-header {
    display: flex;
    flex-direction: column;
}
.img-header li {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 10px;
}
.img-header img {
    position: relative;
    width: 10em;
    height: 10em;
    object-fit: cover;
    overflow: hidden;
}
.img-header span {
    font-family: sans-serif;
    font-weight: light;
    color: white;
    text-align: center;
    font-variant: small-caps;
    font-size: larger;
    margin: 50px;
}
.img-gallery {
    display: grid;
    width: 80%;
    padding: 20px;
    margin: 50px, auto;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 50px;
}
.img-gallery img  {
    position: relative;
    width: 10em;
    height: 10em;
    object-fit: cover;
    overflow: hidden;
}
.img-gallery img:hover {
    transform: scale(1.3,1.3) rotate(-0deg);
    cursor:pointer;
}
.img-gallery p {
    font-family:monospace;
    font-weight: light;
    color: white;
    text-align: center;
    font-variant: small-caps;
    font-size: larger;
}
.img-full {
    width: 100%;
    height: 100VH;
    background:#0e0e0eec;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.img-full img {
    width: 90%;
    height: 90%;
    max-width: max-content;
    max-height:max-content;
}
.img-full span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 1.5rem;
    font-family: sans-serif;
    color: white;
    text-shadow: #222222;
    cursor: pointer; 
    user-select: none;
}
.img-full p {
    color: white;
    font-size: 2em;
    font-family: sans-serif;
    position: absolute;
    cursor: pointer; 
    user-select: none;
}
.img-nav-left {
    top: 50%;
    left: 5%;
}
.img-nav-right {
    top: 50%;
    right: 5%;
}
.footer-main {
    display:flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    background:#111111;
    color:#c2c2c2;
    text-align:center;
    padding: 10px 30px;
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
}
.footer-main img {
    filter: invert(0.7);
    height: 2.5rem;
    margin-left: 15px;
}
.footer-main img:hover {
    transform: scale(1.1);
    filter: invert(0.8)
}
.footer-main ul {
    display:flex;
    list-style-type: none;
}