body {
    background-color: #080F13;
    color: #202931;
    background-image: url('../../img/graphics/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
    font-size: 1.25rem;
    font-family: "Merriweather", Georgia, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body a {
    color: #202931;
    text-decoration: underline dotted;
}

body a:hover {
    color: #18BFEF;
    text-decoration: none;
    transition: 0.1s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    color: #202931;
}

h1 {
    font-size: 3rem;
    text-align: center;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #d1d1d1;
}

/* Header */
.header {
    color: #f2f2f2;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    width: 100%;
    height: calc(100vh - 60px - 2px - 2rem);
    min-height: fit-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Animate only the contents */
.header > * {
    opacity: 0;
    animation: fadeInMove 1.5s ease-in-out forwards;
}

@keyframes fadeInMove {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header a {
    color: white;
    letter-spacing: 0.5rem;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.header .socials {
    margin-top: 4px;
}

/* Content */
.page {
    width: calc(100% + 2rem);
    max-width: 1000px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center; 
}

.page .text {
    padding: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.page .text h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.content {
    background-color: #f2f2f2;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center; 

}

/* Navbar */
.navbar {
    display: flex;
    align-items: flex-start;
    height: 60px;
    width: 100%;
    max-width: 1000px;
    background: rgba(242, 242, 242, 0.2);
}

.navbar-button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;
    text-decoration: none;
    background: transparent;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;    
    height: 100%;
}

.navbar-button:hover {
    background: rgba(242, 242, 242, 0.2);
    transition: 0.1s ease;
}

.selected {
    background-color: #f2f2f2 !important;
    color: #202931;
}

/* Containers */
.navbar-visible {
    display: flex;
    height: 100%;
}

/* Overflow container */
.navbar-overflow {
    margin-left: auto;
    position: relative;
    height: 100%;
}

/* Hamburger button */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    pointer-events: none;
}

.hamburger i {
    font-size: 1.8rem;
}

/* Hidden dropdown */
.navbar-hidden {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(32, 41, 49, 0.95);
    min-width: 180px;
    z-index: 10;
    flex-direction: column;
}

/* Make buttons vertical inside dropdown */
.navbar-hidden .navbar-button {
    justify-content: flex-start;
    height: 50px;
}

.navbar-hidden .navbar-button:hover {
    color: #18BFEF;
}

/* Show dropdown */
.navbar-hidden.show {
    display: flex;
}

/* Footer */
.footer {
    margin-top: 4rem;
    color: white;
    text-align: center;
}

.footer a {
    color: white;
}