* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 98%;
    vertical-align: baseline;
}

body {
    text-align: center;
    font-family: Pixelify Sans;
    background-image: url(img/WhatsApp\ Image\ 2024-01-18\ at\ 12.19.52.jpeg);
    margin: 0;
    text-transform: capitalize;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 63px;
    background: #171717;
    position: fixed;
    width: 100%;
    top: 0; /* Alinea la parte superior del contenedor al borde superior del viewport */
    z-index: 100;
}

.logo {
    margin-left: 30px;
}

.logo a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}

.navbar {
    display: flex;
    margin-right: 10px;
}

.navbar a {
    display: block;
    padding: 20px 20px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
}

.navbar a:hover {
    background: #515151;
}

/* Resto de tus estilos... */
