
@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

body {
  font-family: 'Lucida Console', 'Courier New', monospace;
  font-size: 12px;
  margin: 0;
  padding: 6px;
  background-color: #f2f3f4;
}

.page {
  background-color: #fff;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
 }
 
.outer {
  width: 900px;
  height: 700px;
  border: 1px solid #000;
  padding: 6px;
  background-image: url('img/1.png');
  background-color: #fff;
  margin: auto;
}

.title {
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  width: 300px;
  height: 200px;
  margin-bottom: 6px;
  background-image: url('img/2.png');
}

.site-title {
  font-family: 'Gloria Hallelujah', cursive, sans-serif;
  font-size: 30px;
  text-align: center;
  padding-top: 50px;
  box-sizing: border-box;
}
.site-subtitle {
  text-align: center;
}

.banner-wrapper {
  display: inline-block;
  vertical-align: top;
  width: 540px;
  height: 200px;
}

.banner {
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  width: 540px;
  height: 170px;
  background-image: url('img/banner7.png');
  background-size: cover;
  background-position: 20%;
}

.scroller {
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  width: 540px;
  height: 20px;
  background: #FFF;
  margin-top: 6px;
  overflow: hidden;
}

.marquee-container {
   width: 100%;
   background-color: #f8f9fa;
   padding: 15px 0;
 }

 .marquee-content {
   display: flex;
   animation: marquee 15s linear infinite;
 }

 .marquee-item {
   flex: 0 0 auto;
   padding: 0 20px;
   font-size: 1.2rem;
   color: #495057;
 }

 @keyframes marquee {
   0% {
     transform: translateX(100%);
   }

   100% {
     transform: translateX(-100%);
   }
 }

 .marquee-container:hover .marquee-content {
   animation-play-state: paused;
 }

.left {
  display: inline-block;
  vertical-align: top;
  width: 200px;
}

.menu {
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  padding: 24px;
  box-sizing: border-box;
  background-image: url('img/4.png');
  background-color: #000;
  color: #fff;
}

.small {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}

/* Main content pane */
.main {
  vertical-align: top;
  background: #FFF;
  border-radius: 15px;
}

.iframe {
  height: 100%;
  width: 100%;
  border-radius: 15px;
}

.profile {
  border: 1px solid #000;
  width: 186px;
  height: auto;
  background: #FFF;
  padding: 6px;
  box-sizing: border-box;
}
.avatar {
  border: 1px solid #000;
  width: 170px;
  height: 170px;
  margin-bottom: 12px;
  background-image: url('img/avvy.png');
  background-size: cover;
  background-position: center;
}
.menu a {
  border: 1px solid #FFF;
  height: 32px;
  line-height: 30px;
  width: 100%;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  background: #FFF;
  text-align: center;
  position: relative;
  margin-bottom: 12px;
}
.menu a:before {
  content: " ";
  display: inline-block;
  height: 30px;
  width: 30px;
  background: #000;
  border: 2px solid #FFF;
  position: absolute;
  left: -1px;
  top: -1px;
}

h1 {
  background: #000;
  color: #FFF;
  margin: 0;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-top: -6px;
}
h2 {
  font-size: 12px;
  font-weight: 500;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  letter-spacing: 2px;
  padding: 3px;
}

.width-50 {
  width: 50%;
}
