/* 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: white;
  background-image: url("/images/starss.jpg");
  color: black;
  font-family: Verdana;
  
}


/* TITLE BOX */ 

.main-box 
  {
    
    background-color: rgba(0,0,0,.5);
    color: #fff;
    max-width: 800px;
    padding: 10px;
    margin: 25px auto;
    border-radius: 25px;
    display: flex;
    gap:15px;
    flex-wrap:wrap;
    text-align: center;
  }
  
.main2
  {
    background-color: rgba(0,0,0,.5);
    color: #fff;
      border-radius: 25px;
    padding:50px 100px;
    flex:1 1 calc(80% - 45px);
     max-width: 600px;
     margin: auto;
    font-family: "Comic Sans MS", "Comic Sans", cursive, Courier;

     
  }
    
    
/* BUTTONS */    
    
.btn-group {
    margin:0 auto;
   display:block;
 
}

.button {
  background-color: rgba(0,0,0,.5);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  font-family: "Comic Sans MS", "Comic Sans", cursive, Courier;
  
  
}

.btn-group .button:hover {
  background-color: dodgerblue;
}

.btn-group .button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}


/* LINK COLORS */

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: white;
