body {
  background-color: black;
  color: white;
  font-family: 'Comic Relief';
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

h1 {
  font-family: 'Comic Relief';
  font-weight: 700;
}
h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}
a {
  color: white; 
  transition: 0.5s;
}
a:hover {
  color: #b56bff;
}
.image-container {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;      
  min-height: 100vh;       
  background-color: black; 
  position: relative; 
}
.image-container img {
  max-width: 100%;
  height: auto;
}
.button-group {
  position: absolute; 
  bottom: 40px;
  right: 40px;
  
  display: flex;
}

.image-button {
  background: none;     
  border: none;         
  padding: 0;           
  cursor: pointer;      
  transition: 0.3s;     
  display: block;
}
