@import url("https://fonts.googleapis.com/css2?family=Gabriela&family=Sansita+Swashed:wght@800&display=swap");

body {
  background-color: #4d3a5b;
  color: #4d3a5b;
  font-family: 'Gabriela', serif;
  font-size: 0.8em;
  max-width: 600px;
  height: 100%;
  margin: 7% auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

main {
  background-color: #fff5e6;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 25px;
  border-radius: 10px;
  border: 4px double #4d3a5b;
  box-shadow: 5px 5px #3d2e48;
  margin-bottom: 10px;
}

aside {
  background-color: #fff5e6;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 4px double #4d3a5b;
  box-shadow: 5px 5px #3d2e48;
  margin-bottom: 10px;
}

#leftcolumn {
  width: 59%;
}

#rightcolumn {
  width: 39%;
}

a {
  color: #067194;
  text-decoration: none;
}

a:visited {
  color: #3952f9;
}

a:hover {
  color: #089dce;
  text-decoration: underline;
}

a:visited:hover {
  color: #7586fb;
  text-decoration: underline;
}

strong {
  text-transform: uppercase;
}

a img:hover {
  opacity: 0.7;
}

.center {
  display: block;
  text-align: center;
}

#link {
  background-color: #fce8c2;
  text-align: center;
  font-size: 1.8em;
  padding: 10px;
  margin: 10px -10px;
  border-radius: 10px;
}

#link a {
  color: #4d3a5b;
}

#autiring, #ncring {
  display: flex;
  justify-content: center;
}

#info {
  position: relative;
}

#rating {
  display: block;
  margin: auto;
}

#marqueecontainer {
  background-color: #fce8c2;
  border-radius: 10px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  padding-top: 20px;
  padding-left: 100%;
}

.scrolling1 {
  animation: marquee 25s linear infinite reverse;
  display: inline-block;
  padding: 0 10px;
}

.scrolling2 {
  animation: marquee 25s linear infinite normal;
  display: inline-block;
  padding: 0 10px;
}

@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-1250px);
  }
}

@media only screen and (max-width: 650px) {
  body {
    margin: 2% auto;
    max-width: 350px;
  }
  
  #leftcolumn, #rightcolumn {
    width: 100%;
  }
}