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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.left, .right {
  flex: 1;
  position: relative;
}

.left {
  overflow: hidden;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

.right {
  background-color: red !important;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.content {
  text-align: center;
  background-color: red !important;
}

.content .social{
  list-style: none;
  display: block;
   background-color: red;
}

.content .social li{
  list-style: none;

}

.logo {
  max-width: 150px;
  margin-bottom: 40px;
}

.menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 15px 0;
  transition: color 0.3s;
}

.menu a:hover {
  color: #00ffff;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .left, .right {
    flex: none;
    height: 50vh;
  }
}
