body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

:root {
    --font-size: 1rem;
    --line-height: 1.5;
    --padding-small: 0.5rem;
    --padding-mediim: 1rem;
    --padding-large: 1.5rem;
    --margin-small: 0.5rem;
    --margin-medium: 1rem;
    --margin-large: 2rem;
}



nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: var(--margin-medium);
}

.logo {
    display: none;
    cursor: pointer;
    padding-bottom: var(--padding-large);
}

.logo a img {
    height: 140px;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    width: 80vw;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
}



nav ul li a:hover {
    color: #bb1414;
}

nav ul li a img {
    height: 140px;
}

.menu_icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu_icon span {
    width: 25px;
    height: 3px;
    background-color: white;
}

#egg{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    
    background-image: url(images/beh_face01_wc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.75);
    padding: var(--padding-mediim);

}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60vw;
}

main form label {
    color: white;
}

h1 {
    color: white;
    font-size: 2.5rem;
    padding: var(--padding-small);
}

h2 {
    color: #bb1414;
    font-size: 1.8rem;
}

h3 {
    color: white;
    font-size: 2rem;
}

p {
    color: white;
    padding: var(--padding-large);
    font-size: 1.5rem;
}

.char {
    display: flex;
    flex-direction: row;

}

#griffith {
    display: flex;
    flex-direction: row-reverse;
}

.char img {
    height: 80vh;
    width: auto;
}

.insp {
    display: flex;
    flex-direction: row;
}

#insp_img_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: var(--padding-mediim);
}

#insp_img_2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: var(--padding-mediim);
}

#insp_img_1 img {
    height: 30vh;
}

#insp_img_2 img {
    height: 30vh;
}

#gal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5vw;
    width: 80vw;
    padding: var(--padding-large);
}

#gal img {
    height: 40vh;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 10vh;

}

@media (max-width: 980px) {
    .nav_links {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: relative;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }


    .logo {
        display: flex;
    }

    nav ul li a img {
        display: none;
    }

    nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: var(--margin-medium);
        
    }

    .nav_links.active {
        display: flex;
    }

    .menu_icon {
        display: flex;
    }

    .menu_icon span {
        transition: all 0.3s ease;
    }

    .menu_icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu_icon.active span:nth-child(1) {
        transform: rotate(45deg);
        position: relative;
        top: 8px;
    }

    .menu_icon.active span:nth-child(3) {
        transform: rotate(-45deg);
        position:relative;
        top: -8px;
    }

    main h1{
        font-size: 2rem;
    }

    .intro {
        width: 100vw;
    }

    .char {
        flex-direction: column;
        align-items: center;
    }

    #griffith {
        flex-direction: column;
    }

    #insp_img_1 {
        display: none;
    }

    #insp_img_2 {
        display: none;
    }
}