*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: all 1s;
}

body{
  line-height: 1,6;
  background-color: #f9f9f9;
  color: #333;
  background-image: url('./assets/img/9133036.jpg');
}

header{
  display: flex;
  justify-content: space-between;
  background-color: #d4afcf;
  padding: 10px 0 5px;
  flex-wrap: wrap;
}

.laptop-header{
  display: flex;
  flex-wrap: wrap;
}

.smartphone-header{
  display: none;
}

.list-menu{
  display: none;
}

.home, .podcast, .news, .weather{
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  margin: 0 10px 10px;
  background-color: #ff69b4af;
  padding: 10px 20px;
  border-radius: 5px;
}

.home:hover, .podcast:hover, .news:hover, .weather:hover{
  color: #fff9f9;
  text-underline-position: unset;
  text-decoration: none;
  opacity: .6;
}

.home:active, .podcast:active, .news:active, .weather:active{
  opacity: .4;
}

.logo-difusora{
  height: 40px;
  margin-top: -30px;
}

.frequency{
  height: 40px;
  margin-left: -4px;
  margin-top: -32px;
}

.music{
  margin-top: -10px;
}

.name-container{
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.name {
  font-size: 8rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, #0000CD, #00FF00, #00008B);
  background-size: 200%;
  color: #fff;
  animation: shine 3s infinite linear;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  background-color: aquamarine;
}

@keyframes shine {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.welcome-text{
  font-size: 4rem;
  display: flex;
  justify-content: center;
}

.kelly-apresentation{
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
}

.kelly-img{
  width: 36vw;
}

.sobre-mim{
  max-width: 800px; 
  font-family: Arial, sans-serif;
  font-size: 20px; 
  line-height: 1.6;
  color: #333; 
  margin: 10px; 
  padding: 20px; 
}

.carousel{
  width: 98vw;
}

.carousel-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-item{
  height: 170px;
  width: 60vw;
  background-color: #525050;
  color: #fff;
  border-radius: 10px;
}

.carousel-control-prev, .carousel-control-next{
  background-color: #50C878;
  border-radius: 10px;
}

.carousel-control-prev:hover, .carousel-control-next:hover{
  opacity: .6;
}

.carousel-control-prev:active, .carousel-control-next:active{
  opacity: .4;
  transform: translateY(-4px);
}

.influencer {
  text-align: center; 
  font-size: 3rem; 
  color: #6A0DAD; 
  font-weight: bold; 
  margin: 20px 0; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
  display: flex;
  justify-content: center;
}
       
.partners-container-big{
  margin-bottom: 20px;
  width: 98vw;
  height: 300px;
  overflow: hidden;
  white-space: nowrap;
}

.partners-container {
  display: inline-block;
  height: 160px;
  animation: animated 15s linear infinite;
}

.partners{
  width: 300px;
}

@keyframes animated {
  100% {
    transform: translateX(-100%);
  }
}

.social-media{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contacts-container{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin: 30px;
}

#insta, #whats, #podcast{
  display:inline-block; 
  padding:10px 15px; 
  background-color:#FF69B4; 
  color:#fff; 
  text-decoration:none; 
  border-radius:5px;
}

#whats-container, #podcast-container, #insta-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer{
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #000;
}

.dt-link{
  text-decoration: none;
  color: #000;
}

.another{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 10px;
}

.news-container{
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #b3b3b3;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 10px;
}

#news-title{
  font-weight: bold;
}

.news-buttons{
  display: flex;
  gap: 10px;
}

#news-count, #prev-button, #next-button{
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #50C878;
  border: none;
}

#news-count{
  background-color: transparent;
  border: none;
}

.weather-container{
  width: auto;
  background-color: #b3aeae;
  padding: 10px 20px;
  border-radius: 10px;
}

.weather-container p{
  margin: 10px 0;
}

#city-to-weather{
  padding: 5px 10px;
  border-radius: 10px; 
}

#search-weather{
  padding: 5px 10px;
  border-radius: 10px;
  margin-left: 10px;
}


.instagram-feed{
  display: flex;
  justify-content: center;
  align-items: center;
}

.last-youtube-video{
  width: auto;
}

.youtube-container{
  padding: 10px 0;
  background-color: #81818180;
  border-radius: 5px;
  width: 90%;
  margin: 10px 5%;
}

.youtube-img{
  filter: drop-shadow(-2px -2px 2px 1px rgba(0, 0, 0, 0.2));
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.youtube-img, .youtube-title{
  width: 90%;
  margin: 5px 5%;
  border-radius: 10px;
}

.youtube-title{
  color: #333;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}


@media (max-width: 430px) {

  header{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .laptop-header{
    display: none;
  }

  .smartphone-header{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .list-menu{
    display: flex;
    height: 30px;
    width: 30px;
  }

  .home, .podcast, .news, .weather{
    font-size: 20px;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .music{
    width: 200px;
  }

  .name-container{
    height: 40vh;
  }

  .name {
    font-size: 4rem;
  }

  .welcome-text{
    font-size: 2rem;
  }

  .kelly-apresentation{
    display: grid;
    grid-template-columns: 1fr;
  }

  .kelly-img{
    width: 90vw;
  }

  figcaption{
    font-size: 14px;
  }

  .sobre-mim{
    font-size: 14px;
  }

  .carousel-item{
    height: 280px;
    font-size: 14px;
  }

  .influencer{
    font-size: 2rem;
  }

  .social-media{
    flex-direction: column;
  }

  .instagram-feed{
    flex-direction: column;
  }

  .instagram-media{
    width: 80vw;
  }

  .last-youtube-video{
    width: 100vw;
    height: 60vw;
  }

  .contacts-container{
    flex-direction: column;
  }

  .another{
    flex-direction: column;
  }

  .news-container{
    width: 90vw;
  }

  .news-img{
    width: 80vw;
    height: 80vw;
  }

  footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }
}