body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.header-image {
  text-align: center;
  padding-top: 20px;
}

.header-image img {
  transform: scale(1);
  margin: 0 auto;
  display: block;
}

.corner-image {
  position: absolute;
  top: 25px;
  right: 25px;
}

.corner-link {
  display: block;
}

.corner-image-normal {
  width: 100%; 
  height: 100%; 
  display: block;
}

.corner-image-hover {
  width: 100%; 
  height: 100%; 
  display: none;
}

.corner-link:hover .corner-image-normal {
  display: none;
}

.corner-link:hover .corner-image-hover {
  display: block;
}

.main-title-container {
  text-align: center;
  padding-top: 25px; 
  padding-bottom: 30px;
}

.main-title {
  font-size: 24px;
  color: #13AFF0;
  text-decoration: none;
  font-style: italic;
}

.divider {
  width: 100%;
  height: 3px;
  background-color: #C3C3C3; 
  margin: 10px 0;
}

.sub-title-container {
  text-align: center;
  margin-top: 80px; /* Distance between the divider line and the sub-title "Browse/Purchase/Request" */
  margin-bottom: 5px; /* Distance between the sub-title and the images/image titles */
}

.link {
  color: #C3C3C3;
  text-decoration: underline;
}

.link:hover {
  color: #13AFF0;
  text-decoration: underline;
}

.sub-title {
  font-size: 20px;
  color: #C3C3C3;
  text-decoration: none;
}

/* The :root below is for colors - all code from here until next note is for the Image/Images titles  */

:root {
  --primary-color: #C3C3C3;
  --hover-color: #13aff0;
}

.titles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 250px;
  margin-top: 50px;
}

.title-box {
  flex: 1;
  margin: 20px 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.title-box:hover .title a {
  color: var(--hover-color);
}

.title-image-normal,
.title-image-hover {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0s;
}

.title-image-hover {
  opacity: 0;
  margin-top: -64px;
}

.title-box:hover .title-image-normal {
  opacity: 0;
}

.title-box:hover .title-image-hover {
  opacity: 1;
}

.title {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 5px;
}

.title:hover {
  color: var(--hover-color);
}

.title-link {
  text-decoration-thickness: 2px;
  text-decoration-color:#C3C3C3
}

.title-box:hover .title, .title-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color:#13AFF0
}


/* Monthly Special Code Below */

.monthly-special-title-container {
  text-align: center;
  margin-top: 85px; /* Distance between the Image/Image Titles and the Monthly Special Text+ */
  margin-bottom: 125px; /* Distance between the Monthly Special Text and the Flaticon Text */
}

.monthly-special-title {
  font-size: 18px;
  font-style: italic;
  color: #C3C3C3;
  margin: 0;
}

/* Flat Icon Code Below */

.flaticon-title-container {
  text-align: right;
  margin-top: 5px; 
  margin-right: 35px;
  margin-bottom: 15px;
}

.flaticon-title {
  font-size: 12px;
  color: #C3C3C3;
  margin: 0;
}

.flaticon-title a {
  color: #C3C3C3;
  text-decoration: underline;
}

.flaticon-title a:hover {
  text-decoration: none;
  color: #13AFF0
}