* {
    font-family: "Merriweather", "Consolas", "sans-serif";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
}

.navigation h1 {
    font-family: "Niconne", cursive;
    font-size: 3vw; /* Reduced from 4vw */
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: darkseagreen;
    padding: 1rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.5vw;
    font-weight: 600;
}

.nav-links a:hover {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: darkseagreen;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 3vw;
    }

    .hamburger {
        display: flex;
    }
}

.title{
    color:darkseagreen;
    text-align:center;
    font-size:1.3vw;
    margin:3%;
}

.color-container{
    width:100%;
    height:35vw;
    background-color:darkseagreen;
    padding: 3%;
}

.info{
    display:flex;
    gap:3vw;
    margin:3%
}

.info{
    color:white;
    font-size:1.5vw;
    text-align:center;
}

.fa-solid{
    font-size:3vw;
    color:white;
}

.block {
    display: inline-block;
    width: 46.2vw; /* Width as a percentage of the viewport width */
    height: 50vh; /* Height as a percentage of the viewport height */
    color: white;
    background-color: darkseagreen;
    text-align: center;
    line-height: 25vh; /* Center text vertically */
    font-size: 2vw; /* Font size as a percentage of the viewport width */
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevents shrinking */
}

@media (max-width: 768px) {
    .block {
        width: 45vw; /* Adjust width for mobile */
        height: 30vh; /* Adjust height for mobile */
        font-size: 3vw; /* Adjust font size for mobile */
    }
}

.types{
    margin:3%;
    gap:2vw;
    margin-bottom:10%;
}

.types h1{
    color:darkseagreen;
    font-size:3vw;
    text-align:center;
    padding:2%;
}