/* Define the default font */
body {
    background-image: linear-gradient(rgba(0, 0, 255, 0.5), rgba(255, 255, 0, 0.5)),
                    url('/images/background.jpg');
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  /* Define header styles */
  header {
    /* background-color: #333; */
    color: #fff;
    padding: 1em;
    text-align: center;
  }
  
  /* Define container styles */
  .container {
    margin: 0 auto;
    max-width: 80%;
    padding: 2em;
  }
  
  /* Define button styles */
  button {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5em 1em;
  }
  
  /* Define link styles */
/* unvisited link */
a:link {
  color: rgb(55, 0, 255);
}

/* visited link */
a:visited {
  color: rgb(128, 94, 0);
}

/* mouse over link */
a:hover {
  color: rgb(105, 255, 105);
}

/* selected link */
a:active {
  color: rgb(0, 255, 98);
}
  
  /* Define list styles */
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  /* Define table styles */
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    border: 1px solid #333;
    padding: 0.5em;
    text-align: left;
  }
  
  /* Define form styles */
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    background-color: #fff;
    border: 1px solid #333;
    padding: 0.5em;
    width: 100%;
  }
  
  input[type="submit"] {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5em 1em;
  }

  .li-left {
    float: left; 
    width: 50%;
    padding-top: 1em;
  }
  
  .li-right {
    float: right; 
    width: 50%;
    padding-top: 1em;
  }

  hr {
    border: 0;
    height: 1px;
    padding: 1em;
    background-image: linear-gradient(to right, rgba(235, 226, 107, 0), rgba(165, 226, 124, 0.75), rgba(197, 235, 127, 0));
  }
  
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  footer div {
    display: flex;
  }
  
  footer a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5em;
    color: #333;
    text-decoration: none;
  }
  