.container {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  min-height: 100vh;
  align-items: start;
  justify-content: start;
  background: -webkit-linear-gradient(90deg,#000000,#0091ff,#000000);
  background: linear-gradient(90deg,#000000,#0091ff,#000000);
}

.titles {
  display: flex;
  flex-wrap: wrap;
  gap: 3vh;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 7vmin;
  margin-left: 0.3ch;
  color: #aba6a6;
}

.smart-name {
  font-family: 'Yeseva one', serif;
  font-size: 6.5vmin;
  color: #010435;
}

.description {
  display: flexbox;
  padding: 0.6ch ;
  font-family: 'Russo One', sans-serif;
  font-size: 2.8vmin;
  margin-top: 3vmin;
  color: #aba6a6;
  border: 2px dotted #01043270;
  border-radius: 12px;
  text-align: center; 
}

.play {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.media { 
  display: flex;
  margin-bottom: 0px;
  width: 63vw;
}

.next, .prev {
  font-size: 300%;
  color: #0091ff;
  cursor: pointer;
} 

.next {
  margin-left: 1vw;
}

.prev {
  margin-right: 1vw;
}

.contacts {
  display: flex;
  position: absolute;
  flex-wrap: wrap;
  left: 0px;
  bottom: 2px;
  width: 40px;
  height: 160px;
  background: #aba6a6;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.messager {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#tel {
  position: absolute;
}

#tel:hover {
  background: #4ba3cf;
  border-top-right-radius: 12px;
}

#wat {
  position: absolute;
  top: 40px;
}

#wat:hover {
  background: #2cba65;
}

#mail {
  position: absolute;
  top: 80px;
}

#mail:hover {
  background: #2f61bd;
}

#phon {
  position: absolute;
  top: 120px;
}

#phon:hover {
  background: #0a7234;
  border-bottom-right-radius: 12px;
}

#number {
  display: flex;
  width: 120px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 120px;
  left: 40px; 
  font-family: 'Russo One', sans-serif;
  color: #aba6a6;
  font-size: 17px;
}

