* {
    /*box-sizing: border-box;*/
    margin: 0;
    padding: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  margin-top: 10px;
  padding: 0 40px;         /* Left and right gap */
  box-sizing: border-box;

}


.flex-container{
  display: flex 1;
  flex-direction:column;
  width: 80%;
  gap: 20px;               /* Gap between flex items */
  background-color: #003366;
  padding: 20px;
  border-radius: 8px;
  color: white;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 30px;
  box-shadow: rgb(4, 6, 10) 10px 5px 5px;
  justify-content: center;
  align-items: center;
  text-align: center;

}
  

.titlePage {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #003366;
}

h2 {
    text-align: center; 
    color: #ffd700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    justify-content: center;
    align-items: center;
}

.home-button{
    display: flex;
    width: 250px;
    padding: 15px 30px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.button-center {
    display: flex;
    justify-content: center;
    align-items: center;        
    margin-bottom: 40px;
    }

.home-button:hover {
      background-color: #0056b3;
    }

@media (max-width: 600px) {

.flex-container{
  display: flex 1;
  flex-direction:column;
  width: 100%;
  gap: 20px;               /* Gap between flex items */
  background-color: #003366;
  padding: 20px;
  border-radius: 8px;
  color: white;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 30px;
  box-shadow: rgb(4, 6, 10) 10px 5px 5px;
  justify-content: center;
  align-items: center;
  text-align: center;

    }
      
}