@import url('https://fonts.googleapis.com/css2?family=Science+Gothic:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');

body {
  background: black;
}

* {
  box-sizing: border-box;
}

.capsule {
  background: radial-gradient(circle,rgba(83, 111, 156, 1) 0%, rgba(1, 2, 7, 1) 100%);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  max-width: 440px;
  margin: auto;
  padding-bottom: 55px;
  position: relative;
}

#border {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  border-image-slice: 27;
  border-image-width: 20px;
  border-image-outset: 2px;
  border-image-repeat: stretch;
  border-image-source: url(https://i.postimg.cc/2jcH0k48/3.png);
  border-style: solid;
  pointer-events: none;
}

#support {
  width: 100%;
  position: relative;
  top: 40px;
}

/*IFRAME*/
iframe {
  width: 95%;
  display: flex;
  height: 465px;
  margin: 10px auto 0px auto;
  border: 0px;
}

/*IMGS*/
#back {
  width: 100%;
  position: absolute;
  z-index: 10;
}

/*FONTS*/
p {
  font-family: "Science Gothic", sans-serif;
  color: white;
  margin: 0;
}

h3 {
  font-family: "Iceland", sans-serif;
  width: 100%;
  background: radial-gradient(circle,rgba(255, 139, 61, 1) 0%, rgba(255, 99, 2, 1) 100%);
  color: white;
  font-size: x-large;
  margin: 0;
  padding-left: 15px;
}

/*MARQUEE*/
.marquee {
  height: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  position: absolute;
  overflow: hidden;
  animation: marquee 5s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

/*MOBILE*/
@media screen and (max-width: 600px) {
  iframe {
    height: 425px;
  }
}




























