* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    overflow-y: auto;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


header {
    background: linear-gradient(to right, rgba(255, 181, 222, 1)5%, rgba(255, 181, 222, 0)30%);
    padding: 1em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    height: 25px;
}

.nav-l {
    display: flex;
    align-items: center;
    margin-left: -50px;
    transform: scale(0.60);
}

.nav-l h1 {
    color: white;
    text-shadow: 0 0 10px rgb(255, 0, 140);
    font-family: 'Tangerine', cursive;
    font-size: 60px;
}

.nav-r {
    display: flex;
}

.navbar {
    list-style: none;
    display: flex;
}

.navbar li {
    position: relative;
    margin-right: 20px;
}

.navbar li:last-child {
    margin-right: 0;
}

.navbar a {
    text-decoration: none;
    color: rgb(150, 150, 150);
    padding: 10xp 15px;
    display: block;
}

.navbar a:hover {
    color: rgba(255, 181, 222, 1);
    text-shadow: 0 0 10px rgba (255, 181, 222, 0.8);
    transition: 0.3s ease-in-out;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #a0a0a075;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #7e7e7e;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.greeting {
    flex: 1;
    display: flex;
    color: white;
    text-shadow: 0 0 10px rgb(255, 0, 140);
    font-family: 'Tangerine', cursive;
    font-size: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 150px;
}

footer {
    background-color: transparent;
    text-align: center;
    padding: 1rem 0;
    margin-top: 20px;
    width: 100%;
}

footer p {
    color: #000000;
    font-size: 0.9rem;
}
