* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url('./img/bg.jpg');
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.nav-items {
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
}

li {
    margin: 20px;
    list-style-type: none;
}

li a {
    text-decoration: none;
    color: black;
    font-size: large;
}

.dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dropdown button {
    background-color: transparent;
    outline: none;
    border: none;
    font-size: large;
}

button:hover {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    display: none;
    top: 60px;
    left: 5px;
    min-width: 150px;
    z-index: 100;
    background-color: violet;
}

.dropdown-content a {
    display: block;
    color: black;
    padding: 10px;
    text-decoration: none;
}

.dropdown-content a:hover {
background-color: grey;
color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
    background-color: white;
}