* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: header;
    src: url(fonts/harley.ttf);
}

.header {
    width: 100%;
    height: auto;
    background: rgb(59, 59, 59);
}

.headerCover {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    width: 100%;
}

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

.col1 > div > img {
    width: 70px;
    height: auto;
}

.col1 > div > img:hover {
    animation: imageHeader 1s;
}

@keyframes imageHeader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    75% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.col1Content {
    display: flex;
    font-family: header;
    color: white;
    font-size: 23px;
    justify-content: center;
    align-items: center;
}

.col2 {
    background-color: rgb(70, 70, 70);
    height: auto;
}

.col3 {
    width: 100%;
    height: auto;

}

/* NAVIGATION */

.navUl {
    width: 100%;
    height: 10vh;
}

.navUl > ul > li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}

.navUl > ul > li > a {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: white;
    transition: .4s;
    user-select: none;
}

.navUl > ul > li > a:hover {
    color: orange;
}

.navUl > ul {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}