html, body {
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.container {
    display: flex;
    width: 100%;
    height: 125px;
    background-color: white;
}

.wrapper {
    display: flex;
    font-size: 22px;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: black;
    box-shadow: 0px 7px 15px 0px rgb(201, 127, 184);
}

.brand-name {
    display: flex;
    flex-direction: row;
    font-size: 40px;
    padding: 15px;
}

#name1 {
    color: white;
    font-weight: 700;
}

#name2 {
    color: #740a4e;
    padding-left: 5px;
}

#imgx {
    width: 60px;
    height: 60px;
}

#imgx:hover {
    width: 80px;
    height: 80px;
    transition: all .3s ease-in-out;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation li {
    list-style-type: none;
    padding: 15px;
}

.navigation li a {
    color: white;
    font-size: 25px;
    text-decoration: none;
}

.navigation li a:hover {
    background-color: #740a4e;
    color: white;
    padding: 15px;
    transition: all .5s ease-in-out;
}

.container2 {
    display: flex;
    width: 100%;
    height: 125px;
    background-color: white;
}

.wrapper2 {
    display: flex;
    font-size: 22px;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: black;
    box-shadow: 0px 7px 15px 0px rgb(201, 127, 184);
}

.navigation2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation2 li {
    list-style-type: none;
    padding: 15px;
}

.navigation2 li a {
    color: white;
    font-size: 25px;
    text-decoration: none;
}

.navigation2 li a:hover {
    background-color: #740a4e;
    color: white;
    padding: 15px;
    transition: all .5s ease-in-out;
}