/* 
    File: home.css
    Author: Kyle Tranfaglia
    Purpose: Styling for the Home page
    Last Updated: 11/13/24
*/
/* General formatting */
body {
  background-color: whitesmoke;
  margin: 0;
  font-family: Arial, sans-serif;
}
hr {
  margin: 5px 0 10px 0;
  border: none;
  border-top: 5px dashed black;
}
/* Image formatting */
.image_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 12% 0 1% 0;
}
/* Large button formatting */
.navigate_button {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  color: rgba(248, 224, 32);
  padding: 68px 34px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 20px;
  margin: 2% 3% 0 3%;
  cursor: pointer;
}
.navigate_button1 {
  background-image: url("../images/ParallelWNN.png");
}
.navigate_button2 {
  background-image: url("../images/SequentialWNN.png");
}
.navigate_button3 {
  background-image: url("../images/1234.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.navigate_button1:hover,
.navigate_button2:hover, 
.navigate_button3:hover {
  background-color: rgb(32, 32, 32);
}
@media only screen and (max-height: 1300px) {
  .image_container {
    margin: 11% 0 1% 0;
  }
}
@media only screen and (max-height: 1250px) {
  .image_container {
    margin: 10% 0 1% 0;
  }
}
@media only screen and (max-height: 1200px) {
  .image_container {
    margin: 9% 0 1% 0;
  }
}
@media only screen and (max-height: 1150px) {
  .image_container {
    margin: 8% 0 1% 0;
  }
}
@media only screen and (max-height: 1100px) {
  .image_container {
    margin: 7% 0 1% 0;
  }
}
@media only screen and (max-height: 1050px) {
  .image_container {
    margin: 6% 0 1% 0;
  }
}
@media only screen and (max-height: 1000px) {
  .image_container {
    margin: 5% 0 1% 0;
  }
}
@media only screen and (max-height: 950px) {
  .image_container {
    margin: 4% 0 1% 0;
  }
}
@media only screen and (max-height: 900px) {
  .image_container {
    margin: 3% 0 1% 0;
  }
}
@media only screen and (max-height: 850px) {
  .image_container {
    margin: 2% 0 1% 0;
  }
}
@media only screen and (max-height: 800px) {
  .image_container {
    margin: 1.5% 0 1% 0;
  }
  .navigate_button {
    padding: 48px 24px;
  }
}