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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

li {
  list-style: none;
}

h1 {
  font-size: 2rem;
  letter-spacing: 2px;
}

h3 {
  font-size: 1rem;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  padding: 10px 25px;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 0;
  transition: background 500ms ease;
  transition: padding 500ms ease;
}

button:hover {
  cursor: pointer;
  padding: 10px 40px;
  background: black;
}

button:active {
  padding: 10px 25px;
}

#navbar {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  position: fixed;
  top: 0;
}

#navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
}

#list {
  display: flex;
  gap: 20px;
  align-items: center;
}

#item-list {
  letter-spacing: 2px;
  font-size: 20px;
  list-style: none;
}

#main {
  height: 100vh;
  background: url("/img/konigssee-3642103.jpg") no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: color;
}

#showcase {
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#showcase h2 {
  margin-top: 60vh;
  letter-spacing: 10px;
  font-size: 2.5rem;
}

#showcase p {
  font-size: 20px;
}

/* About us */

#about-us {
  scroll-margin-top: 80px;
  background: rgba(0, 0, 0, 1);
  color: white;
  height: 150px;
  width: 100%;
}

#about-us-container {
  height: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

#about-us-item {
  background: rgba(36, 37, 36, 0.5);
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  justify-content: space-around;
  transition: all 300ms ease;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 20px;
}

#about-us-item p {
  font-size: 12px;
}

#about-us-item:hover {
  padding: 0px 50px;
  background: black;
  border-color: green;
}

#about-us-item:hover #icon {
  background: green;
}

#icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 46px;
  width: 46px;
  background: black;
  margin-right: 10px;
  border-radius: 100%;
  transition: background 500ms ease;
}

#more-container {
  color: white;
  height: 750px;
  background: url(/img/ounce-3913742.jpg) no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: color;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#more-container #info {
  max-width: 1000px;
  padding: 40px;
  border-radius: 20px;
  transition: background 500ms ease;
}

#info:hover {
  background: rgba(0, 0, 0, 0.6);
}

footer {
  background-color: black;
  color: white;
  height: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer #icon {
  margin-top: 10px;
  color: black;
  background: white;
}

footer #icon:hover {
  background: green;
  color: white;
}

#contact {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

.contact-list-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 37, 36, 0.5);
  border-radius: 20px;
  height: 60px;
  width: 250px;
  padding: 0;
  transition: all 500ms ease;
  border: 1px solid transparent;
}

.contact-list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#item-1 {
  grid-column: 1;
  grid-row: 1;
}

#item-2 {
  grid-column: 1;
  grid-row: 2;
}

#item-3 {
  grid-column: 1;
  grid-row: 3;
}

#item-4 {
  grid-column: 2;
  grid-row: 1;
}

#item-5 {
  grid-column: 2;
  grid-row: 2;
}

#item-6 {
  grid-column: 2;
  grid-row: 3;
}

.contact-list-item:hover {
  width: 300px;
  cursor: pointer;
  font-size: 20px;
  color: green;
  border: 1px solid green;
}

.copyright {
  background: rgba(36, 37, 36, 1);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
