/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #000000;

img { margin: auto; display: block; margin-top: 30px;} 
hr.solid {
  border-top: 2px solid #ff0000;
  border-bottom: transparent;
  width:80%;
}
p {
  font-family: Tahoma, Helvetica, serif;
  text-align: center;
  font-size: 1em;
  margin: 0 auto;
  color: #ff0000;
  max-width:75%
}
@media screen and (max-width: 800px) {
  p {
    width: 80%;
    }
  }
p1 {
  font-family: Tahoma, Helvetica, serif;
  text-align: center;
  font-size: 15px;
  margin-left:30%;
  margin-right:30%;
  max-width:40%;
  color: #ff0000;
}
.button{
    max-width: auto;
    font-size: 18px;
    height: auto;
    font-family: Tahoma, Helvetica, serif;
    background-color: transparent;
    padding: 3px 10px;
    font-weight: bold;
    color: #ff0000;
    border-width: 1px;
    border-color: red;
    border-style: solid;
}
.button-container {
  display: flex; /* Enables flexbox layout for the container */
  flex-wrap: wrap;
  justify-content: center; /* Aligns items horizontally in the center */
  gap: 15px; /* Adds space between the buttons */
  padding: 20px; /* Adds some padding around the container */
  margin: 0 auto;
}  

.my-container {
  max-width: 65%; 
  margin: 0 auto;
  padding: 20px; 
  border: 1px solid #ff0000; 
  color: #ff0000;
  font-size: 20px;
  font-family: Tahoma, sans-serif;
}
  
  
  
  
  