@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.header {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

.col-1 {
  flex-basis: 43%;
  flex-grow: 1;
  background-image: url(img/background.png);
  background-size: cover;
  background-position: center;
  padding: 40px;
  color: #fff;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 80px;
  cursor: pointer;
}

.search-icon {
  width: 25px;
  cursor: pointer;
}

.left-text {
  width: 70%;
  margin: 120px auto 0;
}

.left-text h1 {
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
}

.left-text p {
  font-size: 12px;
  line-height: 24px;
  margin: 30px 0;
}

.left-text a img {
  width: 60px;
  margin-right: 20px;
}

.left-text a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  margin-top: 30px;
}

/* col-2 --------------------- */
.col-2 {
  flex-basis: 57%;
  flex-grow: 1;
  padding: 40px 80px;
  background-image: url(./img/music.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.col-2 ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.col-2 li a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  transition: .3s;
}

.col-2 li a:hover {
  color: #ff5a5a;
}

.btn {
  border: 3px solid #ff5a5a;
  padding: 10px 30px;
  border-radius: 6px;
  transition: .3s ease-in-out;
}

.col-2 a.btn:hover {
  background-color: #ff5a5a;
  color: #fff;
}

.right-text {
  margin-top: 100px;
}

.right-text h2 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 30px;
}

.right-text h3 {
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
}

.right-text p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #555;
}

.right-text a {
  text-decoration: none;
  display: inline-block;
  background-color: #ff5a5a;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 15px 50px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 10px rgba(255, 90, 90, 0.7);
  transition: transform 0.5s;
}

.right-text a:hover {
  transform: translateY(-6px);
}