@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: 2rem;
    
}

.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;
  
}

h3{
    font-family: Black Marker, brush, serif;
    font-size: 1.75rem; 
}

  p{
    width: 65%;
    margin: 20px;

  }
  