/* css for my guides, feel free to use and make some changes */

body {
  margin: 40px;
  background-color: #266fb5;
  font-family: 'PlayfairDisplay', serif;
  color: white;
}

.footer {
  padding: 15px;
  border: 1px solid white;
  border-radius: 2px;
  background: linear-gradient(rgba(22, 69, 221, 0.6), rgba(22, 69, 221, 0.6));
  background-color: #266fb5;
  background-size: cover;
  font-size: 1rem;
  line-height: 1.4;
}

.footer {
  grid-area: footer;
}

.box {
  border: 1px solid white;
  border-radius: 2px;
  padding: 10px;
  font-size: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 120px 1fr;
  grid-template-areas:
    "header header"
    "content content"
    "footer footer";
  gap: 10px;
}

.content {
  grid-area: content;
  background: linear-gradient(rgba(22, 69, 221, 0.6), rgba(22, 69, 221, 0.6));
  background-color: #266fb5;
  background-size: cover;
  padding: 15px;
}

.header {
  grid-area: header;
  background: none;
}

hr.dashed {
  border-top: 3px dashed white;
}

img {
  width: 100%;
}

.icon {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  object-fit: contain;
}

.button {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
  object-fit: contain;
}


#randImage {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  margin: 0; 
  padding: 0; 
  border: none; 
  display: inline-block; 
  background-color: transparent;
}