* {
    box-sizing: border-box;
    user-select: none;
    margin: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background: #484747;
    padding: 0;
    margin: 0;
}

.wrap-menu {
    display: flex;
    flex-direction: column;
    background: #666666;
    width: 50vw;
    margin: 10vh auto 5vh;
    border-radius: 2vw;
}

h1 {
    display: inline-block;
    color: white;
    position: center;
    margin: 2vw auto;
    font-size: 5vw;
    font-family: 'Baloo 2', cursive;
}

.list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
}

.list li {
    background-color: #484747;
    list-style-type: none;
    cursor: pointer;
    width: 35vw;
    height: 10vw;
    max-height: 100px;
    margin-bottom: 3vw;
    border-radius: 2vw;
    box-shadow: 0 0.5vw #2d2d30;
}

.list li:hover {
    background-color: rgba(119, 117, 117, 0.5);
}


.list:last-child {
    margin-bottom: 50px;
}

.list li a {
    text-decoration: none;
    color: white;
    font-size: 3vw;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.list li img {
    justify-self: center;
    width: 4.5vw;
    height: 4.5vw;
    transition: all 0.3s linear;
}

.list li a:hover img {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .wrap-menu {
        width: 80vw;
    }

    .list li {
        width: 60vw;
        height: 20vw;
    }

    .list li a {
        font-size: 5.3vw;
    }
}