@font-face {
  font-family: czciona;
  src: url("./assets/Comic Sans MS.ttf");
}

html, body {
    width:100%; height:100%; margin:0; padding:0;
    font-family: czciona, Arial;
}

body {
    background-image: url("./img/bg.gif");
    background-repeat: repeat;
}

#t {
    text-align: center;
    width: 100%;
}

#title {
    color: yellow; text-decoration: underline; font-style: italic;
    text-align: center;
    font-size: 60px;
    margin: 0;
    padding-top: 20px;
}

#subtitle {
    color: yellow; text-decoration: underline; font-style: italic;
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

#sc-embed {
    width: 100%;
    display: flex;
    justify-content: center;
}

#sc-box {
    width: 500px;
}

#f {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#footer-text {
    color: yellow; text-decoration: underline; font-style: italic;
    text-align: center;
    font-size: 40px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 6s linear infinite;
  color: yellow;
  text-decoration: underline;
  font-style: italic;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* fony */
@media (max-width: 600px) {
    #title {
        font-size: 60px;
    }
    #subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    #sc-box {
        width: 300px;
    }
    #footer-text {
        font-size: 20px;
    }
}

