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

    font-family: Arial, Helvetica, sans-serif;
}

body {
    width: 100vw;
    height: 100vh; 
    background-image: url('../img/messimundial.jpg');
    background-size: cover;
    background-repeat: no-repeat;

    backdrop-filter: blur(5px);
}

header {
    width: 100%;
    height: 80px;
    background-color: black;

    display: flex;

    justify-content: space-around;
    align-items: center;
}

ul {
    display: flex;

    gap: 15px;

    list-style: none;
}

a {
    text-decoration: none;

    font-size: x-large;
    font-family: Arial, Helvetica, sans-serif;

    color: black;

    padding: 8px;

    background-color: white;

    border: 5px
}

.inicio {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: black;
    gap: 40px;
}
