* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Racing;
    src: url(../fonts/MonsterRacing-1Gd94.otf);
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    color: #333;
}

a{
    text-decoration: none;
}

header{
    z-index: 9999;
}

#empresa{
    font-family: Racing, Impact, Haettenschweiler;
    font-size: 40px;
    background-color: #111;
    color: rgb(24, 233, 24);
    text-align: center;
    padding: 5px 5%;
}

.menu{
    background-color: #111;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
} 

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu li {
    display: inline-block;
}

.menu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: rgb(24, 233, 24);
}
footer {
    font-size: 0.9em;
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 40px;
}