body {
    background-color: #262630;
    color: white;
    font-family: sans-serif;
    margin: 20px;
}

.main {
    background-color: #2f313e;
    border-radius: 20px;
    padding: 20px;
    width: 300px;
    margin: auto;
}

.prices {
    background-color: #2f313e;
    border-radius: 20px;
    padding: 20px;
    width: 600px;
    margin: auto;
}

.prices .img {
    margin-top: 5px;
    margin-bottom: 5px;
}

.avatar {
    background-image: url("../images/avatar.jpg");
    background-size: contain;
    width: 300px;
    height: 300px;
    border-radius: 12px;
}

.info {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

hr {
    border-width: 0px;
    background-color: #1d1e25;
    height: 2px;
    border-radius: 2px;
}

.links {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    height: 50px;
}

.links a,
.prices a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.links a:hover,
.prices a:hover {
    text-decoration: none;
}

.icon {
    margin-right: 10px
}

.center {
    display: inline-block;
    vertical-align: middle;
    height: 60px;
}

.video-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.video-container {
  width: 640px;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.video-container video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-container video.active {
  display: block;
}
.video-carousel button {
  background-color: #2f313e;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}
.video-carousel button:hover {
  background-color: #262630;
}
.video-carousel button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #262630;
}