/* 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." */

body {
  background-image: url("/assets/fleshwallpaper2.jpg");
  background-size: 25em 25em;
  color: black;
  font-family: Verdana;
}

div {
  border: 2px solid black;
}

#title {
  color: black;
  text-align: center;
}

#about-me {
  border: 95px solid transparent;
  border-image: url('assets/banner.png') 146 round;
  background-color: #67CB62;
  background-clip: padding-box;

}

#drinky-bird {
  position: fixed;
  bottom: 0;
}

.popup {
  position: fixed;
  visibility: hidden;
    width: 400px;
    background-color: #fff;
    color: #071b51;
    margin: 0 auto;
    text-align: center;
    border-radius: 6px;
    padding: 10px 10px;
    z-index: 1;
    left: 50%;
    object-fit: cover;
}
.show {
  visibility: visible;
}

.column {
  float: left;
  padding: 10px;
}

.left {
  width: 15%;
}

.right {
  float: right;
  width: 68%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.thumb {
  object-fit: cover; 
  height: 17em;
  width: 17em;
  border: 2px solid black;
}

.fullimage {
  object-fit: cover;
  height: auto;
  width: 40em;
  border: 2px solid black;
}

.marquee span {
  display: inline-block;
  width: max-content;

  padding-left: 100%;
  /* show the marquee just outside the paragraph */
  will-change: transform;
  animation: marquee 15s linear infinite;
}

.marquee span:hover {
  animation-play-state: paused
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.marquee {
  overflow: hidden;
  position: relative;
  border: 25px solid transparent;
  border-image: url("assets/scroll.png") 97 round;
  background-color: #fef9bb;
  background-clip: padding-box;
}