/*  Styles for Homework 5
    Author: Zackary Sanchez
*/

/* heading styles */ 
h1, h3 {
  text-align: center;
}

/* button style */ 
button {
  margin: 15px; /* 15px margin around the button */
  background-color: #336699; /* Background color in hex format */
  color: white; /* Text color */
  border-radius: 5px; /* 5px border radius */
  padding: 10px 20px; /* Optional: Add padding for better appearance */
  border: none; /* Optional: Remove default border */
  cursor: pointer; /* Optional: Change cursor to pointer on hover */
}

/* main container for React code */
#container {
  padding: 50px;
  margin: 0 75px 0 75px;
  background-color: #fa8072; /* salmon */
  display: flex;
  justify-content: center;
  border-radius: 15px;
  min-width: 250px;
}


#description_info {
  padding: 75px;
  margin: 50px;
  justify-content: center;
}


#validation {
  text-align: center;
}


footer {
  margin: 50px;
}