/* index.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #3c3f52;
}

.content {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Tw Cen MT", Arial, sans-serif;
  padding: 50px 0px;
}

.container {
  background-color: #f0f0f0;
  border-radius: 30px;
}

.profile {
  text-align: center;
  padding: 20px;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.bio {
  font-size: 18px;
  margin-top: 10px;
  line-height: 150%;
}

.testimonials {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 5px;
  margin: 30px 10px;
  box-shadow: 10px 10px 30px #999999;
  font-size: 1rem;
}

.inline-icon {
  display: inline;
  height: 1rem;
  vertical-align: middle;
}

.link-clean {
  text-decoration: none;
  color: Black;
  font-weight: bold;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  grid-gap: 20px;
  margin: 0px auto;
  width: max-content;
  padding: 20px;
}

.frosted-button {
  position: relative;
  width: 100px; /* square size */
  height: 100px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  background-color: #ea7e3d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.272);

  transition: transform 0.3s;
  transform: scale(1);
}

.frosted-button svg {
  width: 65%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frosted-button img {
  width: 65%;
  object-fit: cover;
  display: block;
}

.frosted-button .yt-link {
  background: rgba(226, 0, 0, 0.5);
}
.frosted-button .tv-link {
  background: rgba(145, 71, 255, 0.5);
}
.frosted-button .md-link {
  background: rgba(86, 58, 204, 0.5);
}

.frosted-button .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(8px);

  opacity: 0;
  transition: opacity 0.25s ease;
  text-decoration: none;
  transition: transform 0.3s;
  transform: scale(1);
}

.frosted-button .title {
  color: white;
  font-size: 1.33rem;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.658);
}

.frosted-button:hover .overlay {
  opacity: 1;

  transform: scale(1.1);
  transition: transform 0.3s;
}

.frosted-button:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.qr-overlay {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-family: "Tw Cen MT", Arial, sans-serif;
  color: white;
}

.qr-overlay img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
}
.qr-overlay p {
  width: 200px;
  display: block;
  margin: 0 auto;
  /* padding: 0 10px; */
}

@media (max-width: 1000px) {
  .qr-overlay {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 0 auto;
  }
}

/* VIDEO AREA */

.video-title {
  text-align: center;
  margin: 20px 0px 10px 0px;
  color: #f0f0f0;
}

.latest-video-title {
  /* margin: 0; */
}
.stream-title {
  /* margin: 0; */
}

#twitch-player {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

iframe {
  height: calc(100vw / 1.777);
  width: 100%;
  max-height: calc(600px / 1.777);
  max-width: 600px;
}
