.raleway-normal {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-normal {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
    background-color: #ff8989;
    margin: 0;
}

h1, h2 {
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-size: 40px;
}

p, li {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

header {
    background-color: #7c0000;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #FFFFFF;
}

.nav-container img {
    height: 50px;
    width: auto;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: flex;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
}

.navbar a:hover,
.navbar .selected {
    color: #4afe77;
}

.nav-icon {
    width: 10px;
    height: 10px;
    object-fit: contain;
    padding-right: 5px;
}

h1 {
    text-align: center;
    margin-top: 40px;
}

p {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}