@font-face {
  font-family: 'carol'; 
  src: url('https://baalbek.neocities.org/fonts/CarolGothic.ttf') format('truetype');
       
}

@font-face {
  font-family: 'mono'; 
  src: url('https://baalbek.neocities.org/fonts/SpaceMono-Regular.ttf') format('truetype');
       
}

@font-face {
  font-family: 'Baskerville'; 
  src: url('https://baalbek.neocities.org/fonts/Baskervville-Regular.ttf') format('truetype');
       
}

  * {
    scrollbar-width: auto;
    scrollbar-color: #f1efdf #ffffff;
  }

  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #f1efdf;
    border-radius: 3px;
    border: 2px dotted #ffffff;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: black;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #333;
}

a {
  color: red;
  text-decoration: none;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;

}

.tv-container {
  justify-content: flex-start;
    width: 50%;
    display: flex;
    position: relative;
    margin-left: 0;
}
.tv-caption {
    color: white; 
    font-family: carol, serif; 
    font-size: 15rem; 
    text-align: left; 
    z-index: 2;
    margin-top: 80%;
    position: relative;
}

.tv-frame {
    position: relative;
    width: 300px; 
    height: 300px; 
    z-index: 2;
    
}

.tv-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    object-fit: contain;
}

.tv-image:nth-child(2) {
    z-index: 2;
    transition: opacity 0.5s ease;
}

.tv-screen {
    position: absolute;
    top: 9%;
    left: 17%;
    width: 60%;
    height: 58%; 
    overflow: hidden;
    z-index: -999;
    background: black;
}

.tv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.tv-button {
    position: absolute;
    cursor: pointer;
    background: transparent;
    z-index: 3;
}

.tv-button {
    position: absolute;
    cursor: pointer;
    background: transparent;
    z-index: 3;
}
.stop-video {
    position: absolute;
    cursor: pointer;
    background: transparent;
    z-index: 3;
}

.text-box {
  font-family: mono, sans-serif;
   word-wrap: break-word;
    flex: 1;
    margin-left: 20px;
    margin-right: 0;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 25px 25px 50px 0 white, -25px -25px 50px 0 white, 
                25px -25px 50px 0 white, -25px 25px 50px 0 white;
    padding: 3px;
    border-radius: 50px;
    background: white;
    font-size: 0.7rem;
     flex-direction: column;
     opacity:0.7;
}

