:root {
    --color-hover: rgba(0, 0, 0, 0.4);
}

.sectionHome1 {
    margin: 15% 10% 0 10%;
}

.sectionHome2 {
    margin: 2em 10% 0 10%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
}

.logoHome {
    width: 350px;
}

.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdownContent {
    /*caché de base*/
    display: none;
    position: absolute;
    /*ne dépasse pas le bouton de base*/
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    z-index: 1;
    background-color: var(--color-hover);

}

.dropdownContent a {
    color: white;
    display: flex;
    text-align: left;
    padding: 10px;
    position: relative;
}

.catHome {
    font-size: 1.2em;
    color: white;
    text-align: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    height: 100%;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.dropdown:hover #spectacles {
    background-color: var(--color-hover);
}

.catHome:hover {
    background-color: var(--color-hover);
}

a {
    text-decoration: none;
    font-family: 'Baskervville';
    font-variant-caps: small-caps;
}