
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #ECDDCA;
    box-sizing: border-box;
}


.televisio {
    width: 100%;
    max-width: 795px;
    aspect-ratio: 795 / 565;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.salora {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 795 / 565;
}

.kuvaputki {
    position: absolute;
    background-color: #000;
    top: 10%;
    left: 7%;
    width: 70%;
    height: 74%;
    z-index: 2;
    border: none;
    transform-origin: top left;
clip-path: inset(0 round 15%);
}

.kanava {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.linkit {
    width: 100%;
    max-width: 795px;
    margin: 0 auto;
    text-align: right;
    padding: 10px;
    box-sizing: border-box;
}

.linkit a {
    text-decoration: none;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-left: 10px;
}

.linkit a:hover { text-decoration: underline; }

.ohjelmatiedot {
    width: 100%;
    max-width: 795px;
    margin: 20px auto;
    box-sizing: border-box;
    margin-top: 40vh;
}

.ohjelmatiedot:hover { cursor: pointer; }


.ohjelma {
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 1.5vh;
}

.otsikko {
  display: flex;
  align-items: center;
  background-color: #333;
  color: #ECDDCA;
  padding: 5px;
  border-radius: 1px;
  margin-bottom: 10px;
}

.otsikko img {
  margin-right: 10px;
}

.teksti {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: Courier, monospace;
}

.info {
  padding: 10px;
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  font-family: Courier, monospace;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.info a {
  color: #000;
  text-decoration: underline;
}

.info p {
  margin: 0 0 10px;
}

