body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/bd/Flag_of_Cuba.svg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darken background */
    backdrop-filter: blur(4px); /* Slight blur for effect */
    z-index: -1; /* Ensure it stays behind other content */
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto; /* Added margin to create space for footer */
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #e0e0e0;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

li a {
    text-decoration: none;
    color: #1e90ff;
    cursor: pointer;
}

li a:hover {
    text-decoration: underline;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px; /* Added margin to create space */
}

footer p {
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #222;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    color: #e0e0e0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Rating Styles */
.rating {
    display: flex;
    align-items: 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(245, 244, 240);
}

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

/* selected link */
a:active {
  color: rgb(236, 243, 239);
}
  
  /* 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(236, 241, 231, 0.75), rgba(197, 235, 127, 0));
  }
  
  
.rating span {
    margin-right: 5px;
}

.star {
    color: #ffd700;
    font-size: 24px;
}
