html, body {
  cursor: url('pix495.gif'), auto;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #FADBEF;
  color: #462218;
  overflow-x: hidden;
  background-image: url('home-background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

a:hover {
  cursor: url('cat-cursor.gif'), pointer;
}

.home-buttons-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 35px;
}

.all-home-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-button {
  display: flex;
  align-items: center;
  gap: 5px;                  
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #462218;
  text-align: left; 
  width: 200px;  
  padding: 2px 6px;           
  min-width: 0;                
  font-size: 25px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.home-button:hover {
  transform: scale(1.20); 
}

.home-button:visited {
  color: #462218;
}

.button-icon {
  width: 45px;
  height: 50px;
}

.home-title {
  font-size: 40px;
  margin-bottom: -20px;
  margin-top: 80px;
  text-align: center;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}


