/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Silkscreen:wght@400;700&display=swap');

body {
  background-image: url("background1.gif");
  background-repeat: repeat;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.container {
  background-color: orange;
  border: 10px solid white;
  border-radius: 3px;
  padding: 5rem;
  width: 45%;
  height: 16rem;
  overflow-x: hidden;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.nav-wrapper {
  position: relative;
  left: 5rem;
  top: 3rem;
}

.title {
  font-family: "Kdam Thmor Pro", sans-serif;
  font-size: 50px;
  background: linear-gradient(to bottom, #feccb1 0%,#f17432 50%,#ea5507 51%,#fb955e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position:absolute;
  top: 10px;
  left: 400px;
}

.vmu {
  background-image: url('vmu.png');
  background-repeat: no-repeat;
  background-size: 100%;
  width: 180px;
  height: 300px;
}

.vmu iframe {
  width: 121px;
  height: 80px;
  overflow-x: hidden;
  margin-top: 85px;
  margin-left: 32px;
}

.container iframe {
  width: 100%;
  height: 250px;
  overflow-x: hidden;
}