@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Spectral:wght@200&display=swap');


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


body {
    width: 100%;
    height: 100vh;
    background: url(background-home.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0.4rem;
}

#logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

 h1 {
    font-size: 50;
    font-family: 'Bebas Neue', cursive;
    color: #ffffff;
}

#menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-item {
    font-size: 50;
    font-family: 'Bebas Neue', cursive;
    color: #ffffff;
}

button {
    width: 7rem;
    padding: 0.5rem 0.5rem;
    background-color: #696565;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    font-size: 50;
}

button:hover {
    background: #696565;
    opacity: 50%;
    cursor: pointer;
}