body {
    background-color: white;
}

a {
    cursor: pointer;
}

.header-main {
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
}

.header-main-logo {
    width: fit-content;
    height: 60px;
    background-color: white;
    padding-left: 0px;
    display: flex;
}

.header-main-logo img {
    height: 50px;
    margin-left: 20px;
    align-self: center;

}

.header-main-nav {
    width: fit-content;
    height: 100px;
    background-color: white;

}

.header-main-nav ul {
    list-style-type: none;
    margin-left: 10px;
    overflow: hidden;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul li a {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    font-family: arial;
    line-height: 10px;
    display: block;
    text-align: center;
}

.header-main-nav ul li a:hover {
    color: red;

}