@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Ubuntu", sans-serif;
  text-align: center;
  background-color: whitesmoke;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%23281300' fill-opacity='0.22'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

h1 {
  font-size: 3rem;
  font-weight: 700;

  color: #281300;
  margin: 1rem 0 2rem 0;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.loader img {
  position: fixed;
  inset: 50% 0 0 50%;
  transform: translate(-50%, -50%);
  height: 150px;
}

/* Image Container */
.image-container {
  margin: 0 30% 0 30%;
}

.image-container img {
  width: 100%;
  margin-bottom: 5px;
}

a {
  text-decoration: none;
  font-style: italic;
  color: rgb(206, 204, 204);
}

.note {
  position: fixed;
  bottom: 0;
  padding: 1.5rem 0;
  width: 100%;
  background-color: #0f0903;
  color: #fff;
  font-weight: 300;
}

/* Media Query Mobile Devices */
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 2.5rem;
  }

  .image-container {
    margin: 0 2.5% 0 2.5%;
  }
}
