/* 🌏🌏🌏 Global 🌏🌏🌏 */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
h1,h2,h3,h4 {
  font-family: "Raleway", sans-serif;
  font-weight: normal;
}
h1 {
  font-weight: 100;
}
.wrapper {
  max-width:1680px;
  margin: auto;
}
section:has(.wrapper) {
  padding:100px 0;
}
.full-height {
  height: 100vh;
}

/* 🎶🎶🎶 Header 🎶🎶🎶 */
.header {
  color:#fff;
}
.header::before {
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
  background:rgba(0,0,0,0.25);
}
.header .wrapper {
  position: absolute;
  top:100px;
  left:100px;
  right:100px;
  bottom:100px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-size: 18px;
  color:inherit;
}
.main-nav a:first-of-type {
  margin-right: auto;
}
.main-nav a:last-of-type {
  margin-left: 150px;
}
.main-nav a+a {
  margin-left: 70px;
}
.titles {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.titles a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 🎶🎶🎶 Main 🎶🎶🎶 */


/* 🎉🎉🎉 Welcome 🎉🎉🎉 */
.welcome {
  background:url(../img/palm-bg.jpg) center/cover;
  display: flex;
}
.welcome .wrapper {
  display: flex;
  align-items: center;
}
.welcome__img {
  width: 70%;
}
.welcome__txt {
  width: 40%;
  margin-left: -10%;
  background:#fff;
  padding:100px;
}