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

html {
  scroll-behavior: smooth;
}

body {
  background: #fcfcfc;
}

.navbar {
  background: #fff;
  height: 60px;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 3px lightgray;
}

.navbar .logo {
  height: 70px;
  width: auto;
}

.navbar .navigation {
  display: flex;
  gap: 10px;
}

.navbar .navigation a {
  color: #000;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

#welcome {
  background-image: url("./assets/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: cursive;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#welcome h1 {
  font-size: 90px;
  text-align: center;
}

#welcome p {
  font-size: 50px;
  text-align: center;
}

#wishes {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

#wishes .heading {
  text-transform: uppercase;
  font-weight: 500;
}

#wishes .description {
  margin: 20px 0;
  color: grey;
}

#wishes .content {
  max-width: 600px;
  text-align: justify;
}

#wishes .images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

#wishes .images img {
  width: 200px;
  height: 200px;
  margin-top: 20px;
}

#thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

#thanks h1 {
  text-align: center;
  font-family: cursive;
  font-size: 50px;
}
