header {
    background-color: white;
    border-bottom: #acacac solid 1px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    font-size: 15px;
    font-family: 'Porsche Next', sans-serif;
}

body {
    background-color: rgb(56, 56, 56);
    margin: 0;
    padding: 0;
}

footer {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    margin: auto;
    font-size: 15px;
    font-family: 'Porsche Next', sans-serif;
}

li {
    float: left;
}

li a {
    color: rgb(0, 0, 0);
    display: block;
    padding: 14px 16px;
    text-align: left;
    margin-right: 40px;
    font-size: 20px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #ececec;
    border-radius: 10px;
}

figure {
    background-color: rgb(252, 252, 252);
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    font-size: 15px;
    font-family: 'Porsche Next', sans-serif;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
}

figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

h1 {
    color: white;
    text-align: center;
    font-size: 55px;
    padding: 10px 0;
    margin-bottom: 5%;
}

p {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    margin: 10px;
}

    .fig1 {
        float: left;
        margin-left: 5%;
        margin-right: 2%;
        margin-top: 2.4%;
        margin-bottom: 1.7%;
        padding: 0;
    }

    .fig2 {
        float: right;
        margin-left: 2%;
        margin-right: 10%;
        margin-top: 1%;
        margin-bottom: 1%;
        padding: 0;
    }

    .active {
        background-color: #dfdfdf;
        border: black solid 1px;
        border-radius: 8px;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
  
    .dropdown-button {
        background-color: rgb(255, 255, 255);
        color: black;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
    }
  
    .dropdown-content {
        background-color: white;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        text-align: center;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1;
        margin-left: 10%;
        width: 80%;
    }
  
    .dropdown-content a {
        color: black;
        text-align: center;
        text-decoration: none;
        display: block;
        padding: 12px 16px;
    }
  
    .dropdown-content a:hover {
        background-color: #f1f1f1
    }
  
    .dropdown:hover .dropdown-content {
        display: block;
    }
  
    .dropdown:hover .dropdown-button {
        background-color: white;
    }

    .dropdown-button img {
        width: auto;
        height: 100%;
        object-fit: contain;
        margin-right: auto;
        margin-left: auto;
        border-radius: 8px;
    }

    .center {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .center img {
        width: 800px;
        height: auto;
        border-radius: 8px;
        margin-top: 20px;
        margin-bottom: 23px;
    }

    .zoom {
        transition: transform 0.3s ease-in-out;
    }
    
    .zoom:hover {
        transform: scale(1.1);
    }