*{
    margin: 0;
    padding: 0;
}

.menu{
    width: 100vw;
    background-color: #ffc6ee;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu ul{
    list-style: none;
    margin-top: 2%;
}

.menu ul li{
    background-color: #ffc6ee;
    color: white;
    width: 170px;
    border: 1px solid #fff;
    height: 50px;
    line-height: 20px;
    text-align: center;
    float: left;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}

.menu ul li:hover {
    background: red;
}

.menu ul ul{
    display:none;
    margin: 0;
}

.menu ul li:hover>ul{
    display: block;
}

.menu ul ul ul{
    margin-left: 170px;
    top: 0px;
    position: absolute;
}