@font-face {
    font-family: Fredoka-Bold;
    src: url(https://static.igem.wiki/teams/5272/fonts/fredoka-bold.ttf)
}

@font-face {
    font-family: Fredoka-Regular;
    src: url(https://static.igem.wiki/teams/5272/fonts/fredoka-regular.ttf)
}

@font-face {
    font-family: Montserrat-Ex;
    src: url(https://static.igem.wiki/teams/4628/wiki/fonts/montserrat-ex.ttf)
}



body {
    font-family: 'Montserrat-Ex', sans-serif;
    background-color: #FCF0DA;
    color: #333;
}

h1 {
    font-family: 'Fredoka-Bold', sans-serif;
    color: #9B65B8;
}

h2, h3, h4 {
    font-family: 'Fredoka-Regular', sans-serif;
    color: #9B65B8;
}

p {
    color: #333;
}

a {
    color: #9B65B8;
}

a:hover {
    color: #5C4440;
}

button {
    background-color: #D8ABBE;
    color: #FCF0DA;
    border: none;
    padding: 10px 20px;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
}

button:hover {
    background-color: #BE74B1;
    color: #FCF0DA;
}

.container {
    width: 100%;
    max-width: 1200px; /* Set the maximum width */
    margin: 0 auto; /* Center the container */
    padding: 0 1rem; /* Add some padding for better spacing */
}

header {
    background-color: var(--header-background);
    color: var(--header-text-color);
    padding: 1rem 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

header nav a {
    color: var(--header-text-color);
    text-decoration: none;
}

.header-image {
    position: relative;
    text-align: center;
    color: white;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.header-image h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.188);
    padding: 1rem;
    border-radius: 8px;
}

main {
    padding: 2rem 0;
}

.section {
    background-color: #fbf9f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.highlight {
    background-color: #f9f9f9; /* Light background color */
    border-left: 5px solid var(--primary-color); /* Left border with primary color */
    padding: 1rem; /* Padding for spacing */
    margin: 1rem 0; /* Margin for spacing */
    font-weight: bold; /* Bold font */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

