@font-face {
  font-family: 'CustomFont';
  src: url('fonts/custom.otf');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  color: #a76ea3;
  font-family: 'CustomFont', sans-serif;
  background-color: #ebdeef;
  border: 5px double #d1add1;
  padding: 0;

}


img { 
  max-width: 100%; 
  height: auto; 
}


.header { 
  padding: 10px; 
}

.header img { 
  border-radius: 85%;
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}


h1 {
  margin-top: 1px;
  margin-bottom: 0.5px;
  text-align: center;
  font-size: 40px;

  padding: 5px;
}

/* i will never not hate this section */
.window-images {
  display: grid;                      
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  padding: 0 20px;
  max-width: 1400px;                
}

.window {
  display: flex;
  flex-direction: column;             
  align-items: center;
  text-align: center;
}

.window img {
  width: 100%;                                   
  height: auto;                      
  object-fit: cover;                  
  border-radius: 8px;
  display: block;
}

.window a {
  color: #533c8c;
  text-decoration: none;
  color: #533c8c;
  font-weight: bold;
  font-size: 14px;                 
  display: block;
  padding: 2px;

}


hr {
  display: block;
  border: solid #DCB6D6;
}

.footer { 
  text-align: center; 
  font-size: 10px; 
}