body  {
background-color:black;
font-family: Arial, sans-serif;
}
.download_links {
color: white;
text-align: center;
}
.main_title_div{
display: flex;
text-align: center;
background-color: rgba(255, 255, 1, 0.7);
border-radius: 10px;
font-size: 40px;
color: black;
width: 30%;
justify-content: center;
margin: 0 auto;
transition: all 0.8s ease-in-out;
gap: 200px;
padding: 0
}
.buttons {
  background-color: rgba(255, 255, 0, 0.7);
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}
.buttons:hover {
 background-color: black;
 color: white;
}
.explanation {
color: rgba(255, 255, 0, 0.7);
text-align: center;
}
.button_main_menu {
  background-color: rgba(255, 255, 0, 0.4);
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}
.button_main_menu:hover {
  color: black;
  background-color: rgba(255, 255, 0, 0.2);
}