
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1E1C26;
}

::-webkit-scrollbar-thumb {
  background: #D33F49;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ECE2D0;
}

h1 img {
  vertical-align: middle;
  margin: 0 10px;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body {
  background-color: #ECE2D0;
  background-image: url("/photos/buildings/miami.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 25%;

  color: #1E1C26;
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  line-height: 1.4;
}

.box {
  position: fixed;
  top: 40px;
  right: 40px;

  width: 700px;
  height: 700px;

  border: 3px solid #D33F49;
  background-color: #ECE2D0;
  padding: 10px;
  text-align: center;

  overflow-y: auto;
}

.box2 {
  position: fixed;
  top: 40px;
  left: 40px;

  width: 500px;
  min-height: 100px;

  border: 3px solid #D33F49;
  background-color: #ECE2D0;
  padding: 10px;
  text-align: center;
}

a:link {
  display: inline-block;
  color: #D33F49;
}

a:visited {
  display: inline-block;
  color: #0F7173;
}

a:hover {
  color: #7D8CA3;
}

a:active {
  color: #8fa4c4;
  transform: translateY(2px);
}