html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #1C77C3;
  color: white;
  font-family: sans-serif;
  background-repeat: no-repeat;
}

/* Main content area */
contact-page .main-content {
  flex-grow: 1;
  background-color: #1C77C3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
 background-repeat: no-repeat;
}

/*
.contact-page {
  background-color: #F5F3BB;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.contact-page .contact-wrapper {
  position: relative;
  width: 92vw;       
  max-width: 92%; 
}

.contact-page .contact-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}


.contact-page .click-area {
  position: absolute;
  display: block;
}


.click-area.top-left {
  top: 12%;
  left: 5%;
  width: 12%;
  height: 22%;
}

.click-area.center.first {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 270px;
}

.click-area.center.second {
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 270px;
}
*/

.contact-page {
  background-color: #F5F3BB;
  min-height: 100vh;
  
  background-image: url('https://caitlin-lindgren.neocities.org/controller.png'); /* your image */
  background-repeat: no-repeat;            /* stops repeating */
  background-position: center;
  background-size: contain;
  
    display: flex;           /* Enable flexbox */
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}
.home {
  position: absolute;
  top: 230px;      /* small offset from top */
  left: 85px;     /* small offset from left */
  width: 90px;    /* adjust width as needed */
  height: 90px;   /* adjust height as needed */
  
  cursor: pointer;
}

.links-container {
  display: flex;
  flex-direction: column; /* stack links vertically */
  gap: 20px;              /* spacing between links */
  align-items: center;    /* center align horizontally */
}

.linkedin img, .gmail img {
  max-width: 900px;
  height: auto;
  display: block;
}