@charset "UTF-8";

html, body{
    margin: 0;
    padding: 0
}

h1,h2,h3,h4,h5,h6,p,ul,li,a{
    margin: 0; 
    padding: 0;
    list-style-type: none;
}

nav {
    position: fixed;
    top: 200px;
    right: 40px;
    padding: 10px;
    background-color: transparent;
    border-left: none;
    box-shadow: none;
    z-index: 10; 
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

nav ul li a {
    width: 200px;
    font-size: 24pt;
    text-decoration: none;
    color: black;
    background-color: #B9BD30;
    padding: 14px 25px;
    border-radius: 10px;
    display: block;
    text-align: center;
    transition: background-color 0.3s;
    font-family: Black Marker, brush, serif;
}

nav ul li a:hover {
    background-color: #D9DB9B; 
    color:white;
}

.highlight {
    background-color: #D9DB9B; 
}

.lizard {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24%;
    transform: rotate(350deg);
    cursor: pointer; 
    transition: transform 0.3s ease; 
}

h1{
    font-size: 5.3rem;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; 
    text-align: center; 
    font-family: Black Marker, brush, serif;
} 

h2{
    font-family: Black Marker, brush, serif;
    font-size: 3rem;
    margin-left: 30px;
    margin-bottom: 20px;
    
}

.logo{
    width: 10%;
    position:absolute;
    top: 30px;
    right:40px;
}

main{
    position:absolute;
    top: 300px;
    text-indent: 20px;
    font-family: Galvji, sans-serif;
    font-size: 16pt;
}


  main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Galvji, sans-serif;
    font-size: 16pt;
    margin: 20px;
}

.staff-member {
    display: flex;
    align-items: center; 
    gap: 20px;
    margin-bottom: 40px;
}

.staff-member img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.staff-member .text {
    max-width: 650px;
}

.staff-member h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
}

.staff-member p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
}

.text-content {
    max-width: 650px;
}

.text-content h3 {
    margin-bottom: 10px;
    font-family: Black Marker, brush, serif;
    font-size: 2rem;
}

.text-content p {
    text-indent: 20px;
    font-family: Galvji, sans-serif;
    font-size: 16pt;
    line-height: 1.6; 
} 

