html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    background: rgba(205, 170, 125, 0.4);
}

A:link {
    text-decoration: none;
    color: #ffffff;
}

ul {
    -webkit-padding-start: 0;
    margin: 0 auto;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: space-around;
    height: 250px;
    width: 500px;
    border: 2px solid #ffffff;
}

ul li {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 400;
    min-width: 400px;
    font-size: 24px;
    align-self: center;
    background-color: #a6a28d;
    height: 60px;
}

ul li:hover {
    background-color: rgba(205, 170, 125, 0.9);
    transition: background-color 0.3s ease;
    color: #ffffff;
    width: 100%;
    cursor: pointer;
}