:root {
    --bg-color: rgba(0,0,0,0.85);
    --navbar-hover: grey;
    --text-color: white;
    --border-radius: 0.5rem;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-color);
}

.navbar {
    display: flex;
}

.navbar .header {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.navbar #navbar-logo {
    aspect-ratio: 960/826;
    width: 5rem;
    height: auto;
}

.navbar .links {
    gap: 1.25rem;
    display: flex;
    align-items: center;
}

.main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content {
    padding: 2.5rem;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1280px;
    gap: 2rem;
}

.content .title {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content .rounded {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    /*user-select: none;
    -webkit-user-drag: none;*/
    transition: all ease-in-out 200ms;
    cursor: pointer;
}

.content .hover-scale-up:hover {
    scale: 1.02;
}

.img-modal {
    z-index: 50;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-modal .img-modal-container {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 5rem;
    height: 100%;
    width: 100%;
}

.img-modal .img-modal-container img {
    scale: 0.5;
}

.hidden {
    display: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    transition: all ease-in-out 100ms;
}
a:hover {
    color: var(--navbar-hover);
}

button[type="download"] {
    padding: 1rem;
    font-family: cursive;
    background: linear-gradient(45deg, rgb(255, 145, 0), rgb(195, 0, 255));
    border: none;
    outline: none;
    border-radius: var(--border-radius);
    transition: all ease-in-out 200ms;
}
button:hover {
    scale: 1.05;
    cursor: pointer;
    filter: brightness(1.1);
}