:root {
    --global-body-font-family: 'Verdana',
        sans-serif;
    --global-link-color: #c3c313;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.bannerCentrum {
    height: 100vh;
    margin: 0 auto;
}

.bannerCentrumImg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bannerCentrumImg img {
    animation: zoom 1.2s infinite linear;
}

.bannerCentrumImg img:hover {
    cursor: pointer;
}

@keyframes zoom {
    1% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.2);
        box-shadow: 10px 10px rgba(121, 171, 13, 0.875), -10px -10px rgba(255, 226, 4, 0.875);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

a {
    text-decoration: none;
}

header {
    padding: 10px 50px;
    margin: 0 auto;
    border-bottom: 1px solid #eeeeee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    display: inline;
    padding: 10px 20px;
}

.menu ul li:hover {
    background-color: #000;
    border-radius: 5px;
    box-shadow: 5px 5px yellow;
}

.menu ul li:hover .menuLink {
    color: #fff;
}

.menuLink {
    font-family: var(--global-body-font-family);
    font-weight: 700;
    font-size: large;
    text-transform: uppercase;
    color: #000;
}