.video-wrapper {
  display: flex;
  padding: 25px;
  border-radius: 10px;
  justify-content: space-between;
  background: #ffffff55;
}

.heading__title {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.heading__subtitle {
  display: flex;
  justify-content: center;
  background: #75747455;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.music-events {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
}

h2 {
  font-size: 24px;
  color: #333;
}

.event {
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

h3 {
  font-size: 20px;
  color: #0073e6;
}

p {
  color: #666;
}

.button-new {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button-new:hover {
  background-color: #0055b3;
}

.container_1 {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #0073e6;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  color: #333;
  margin-bottom: 5px;
}

input[type="text"],
textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="file"] {
  margin-top: 5px;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #0073e6;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0055b3;
}

input[type="email"],
input[type="text"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 30%;
}