/* Back button styles */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: var(--mid-green);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 1000;
    /* border: 1px solid rgba(254, 250, 224, 0.2); */
}

.back-button:hover {
    background-color: var(--light-green);
    transform: translateX(3px);
}

@font-face {
    font-family: overpass;
    src: url(media/overpass-regular.otf);
}

* {
    box-sizing: border-box;
}

header {
    width: 100%;
    height: 80px;
    background-color: #2b67d5;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    padding: 0px 20px;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 200px;
}

#header-logo {
    width: 200px;
    height: auto;
    margin-top: 20px;
}

#header-img {
    margin-right: 10px;
}

nav {
    width: auto;
    height: 50px;
    display: block;
    margin-left: auto;
}

nav > ul {
    display: flex;
    padding-inline-start: 0;
    padding-right: 20px;
    margin-right: 0;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

nav > ul > li {
    color: #dfdfe2;
    margin: 0 10px;
    padding: 0 10px;
    display: block;
    margin-top: -30px;
}

nav > ul > li:hover {
    background-color: #dfdfe2;
    color: #1b1b32;
    cursor: pointer;
}

#information {
    margin: 90px 50px 0 50px;
}

.divider {
    width: 95%;
    margin-top: 50px;
}

form {
    margin-top: 30px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.email {
    display: block;
    text-align: center;
    align-items: center;
    margin: 10px auto;
}

#submit {
    display: block;
}

label, span, a {
    font-size: 14px;
    font-family: overpass, sans-serif;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h2 {
    text-align: center;
    margin: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 24px;
    font-family: 'symphony-cg-regular', sans-serif;
}

h3 {
    font-family: overpass, sans-serif;
}

p {
    line-height: 24px;
    font-size: 16px;
    font-family: overpass, sans-serif;
}

video {
    margin-top: 40px;
}

div {
    display: block;
}

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

#items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.emblem {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 15px 50px 15px;
    border: 1px solid #000;
    padding: 12px 10px 10px 10px;
    position: relative;
}

.emblem > .emb-header {
    width: 100%;
    background-color: #649bff;
    padding: 15px 0;
    position: absolute;
    top: 0;
    font-weight: 700;
    font-size: 18px;
    font-family: overpass, sans-serif;
}

.emblem > h3 {
    margin-top: 40px;
}

li {
    list-style-type: none;
    font-size: 16px;
    font-family: overpass, sans-serif;
}

#emblem-img {
    padding-top: 50px;
}

input[type="submit"], button {
    display: block;
    width: 60%;
    margin: 0.5em auto;
    height: 2em;
    font-size: 1.2rem;
    background-color: #f38ef7;
    border-color: #f38ef7;
    min-width: 300px;
    font-family: overpass, sans-serif;
}

input[type="submit"]:hover, button:hover {
    background-color: #649bff;
    border-color: #649bff;
    color: #1b1b32;
    cursor: pointer;
}

#email::placeholder {
    font-family: overpass, sans-serif;
}

footer {
    background-color: #2b67d5;
    width: 100%;
    padding: 10px 0;
    margin-top: 20px;
    text-align: right;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .back-button {
        top: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}