@import url("base.css");

@keyframes scroll-r2l {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-r2l {
  animation: scroll-r2l 10s linear infinite;
}

@keyframes squish {
  50% {
    transform: scaleY(0.9);
  }
}

body{
  background: radial-gradient(#4d1f00, #381100);
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
}

body::after{
  content: url(PICS/mimg/shadow.gif);
  left: 0;
  bottom: 0;
  position: fixed;
  padding: 30px;
  animation: squish 1s ease infinite;
  background: radial-gradient(#aa6300, transparent, transparent)
  
}

.container{
  flex-direction: column;
  display: flex;
  height: 95vh;  
  width: 900px;
  margin: auto;
}

.logo img {
  height: auto;
  width: 7em;
  padding: 10px;
  float: right;
}

.words {
  font-size: 20px;
  padding: 10px;
}

.words::after{
  opacity: 0;
  font-family: times new roman;
  content: "i drew this :)";
  color: white;
  display: block;
  transition: opacity 0.3s ease;

}
.words:hover::after{
  opacity: 1;
  
}

.words img{
  max-height: 500px;
}

.header{
  width: 450px;
  height: 140px;
  display: flex;
  font-family: "joker";
  color: orange;
}

.text{
  font-size: 105px;
  padding: 20px;
  text-shadow: 6px 8px #830000;
}

.header2{
  background: linear-gradient(#7b5c3d, #2e1402, #a0590e);
  border-radius: 8px 100px 5px 20px;
  border: dashed 5px #4d100a;
  height: 60px;
  width: 300px;
  display: flex;
  margin-top: 10px;
}


.icon img{
  height: 90px;
  width: 80px;
  padding: 5px;

}

.inner{
  width: 900px;
  height: 550px;
  margin-top: 15px;
  display: flex;
  align-content: center;
}

.inner2{
  display: flex;
  justify-content: space-around;
  padding-bottom: 20px;
}

.main{
  justify-content: center;
  width: 385px;
  height: 600px;
  overflow: hidden;
  
}
.main1{
  font-family: cafe;
  height: 300px;
  width: 300px;
  border: 5px #813700 ridge;
  background-image: url(PICS/mimg/jazz.jpg);
  background-size: cover;
  color: #ffffff;
  font-size: 40px;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

#blurb {
  margin: 15px;
  font-size: 30px;
  display: flex;
  text-align: center;
}

.main2{
  font-family: cafe;
  width: 100px;
  height: auto;
  z-index: 3;
  color: #ffffff;
  font-size: 40px;
  margin: 0 10px 0 10px;
}

.status {
  font-size: 15px;
  font-family: times new roman;
  height: 100px;
  padding: 5px;
  background-color: #2b0000;
  border: 5px ridge #2e1304;
  margin-top: 10px;
  border-radius: 20px;
}

.talk{
  display: flex;
  overflow: hidden;
}

.marquee{
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: unset;
  margin-top: 20px;
}
.marquee-items{
  display: flex;
  flex-shrink: 0;
  height: 100%;
  min-width: 100%;
  position: relative;
}

.marquee img{
  max-height: 25px;
  filter: sepia(90%);
}

.marquee img:hover{
  filter: sepia(0%);
}

.nav{
  justify-content: center;
  align-items: center;
  margin: 10px;
  
}
.nav img{
  max-height: 90px;
  max-width: 90px;
}

.nav th {
  font-family: pop;
  font-size: 22px;
  text-align: left;
  height: 70px;
  width: 70px;
  text-shadow: 0 0  5px black;
}

a {
  color: #6d7b07;
  text-decoration: none;
}

.inner2 > iframe{
  border: none;
  width: 490px;
  height: 400px;
  background-image: url(PICS/mimg/panera.jpg);
  overflow-y: hidden;
  border-radius: 10px;
  border: 5px ridge #712a04;
}

.webrings{
  text-align: center;
  width: 150px;
  background-color: rgba(0, 0, 0, 0.33);
  padding: 10px;
  border: 5px ridge #712a04;
  height: 370px;
  overflow-y: auto;
  overflow-x: hidden;
  justify-content: center;
}

.webrings div {
  margin: 15px 0 15px 0;
}

.webitem {
  align-content: center;
}

.header3 {
  background-color: #8b2626;
  width: 150px;
  height: 30px;
  margin-bottom: 15px;
  align-content: center;
  font-family: pop;
  font-size: 23px;
}

#target {
  display: block;
  cursor: pointer;
  height: 200px;
  width: 200px;
  padding: 30px;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 5;
  content: '';

}
@media(max-width:880px), (orientation:portrait) {
  .text {
    font-size: 70px;
  }
  
  .talk{
    margin: 10px;
  }
  
  body:after img{
    display: block;
    width: 5px;
    height: 5px;
    left: 0;
    right: 0;
    position: fixed;
  }

  .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .words img {
    width: 100vw;
    height: auto;
  }
  
  .nav{
    justify-content: center;
    align-content: center;
    margin: auto;
  }
  
  .nav-button {
    border-radius: 10px;
    padding: 10px 16px;
    margin-right: 12px;       /* Adds space between buttons */
    background-color: brown;
    border: none;
    cursor: pointer;
    flex-shrink: 0;    
  }
  
  .main, .main1 {
    width: 100vw;
    min-height: auto;
    margin: 10px;
  }

  .inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .header2 {
    width: 90vw;
    margin: 10px;
  }
  .inner2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 20px;
    position: relative;
    flex-wrap: wrap;
  }
  
  .inner2 > iframe {
    width: 90vw;
    margin: 10px auto;
  }
  
  .webrings, .header3 {
    justify-content: center;
    margin: auto;
  }
}


