/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Style for the body element */
  body {
    background-color: #3fffe5;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
  }
  
  /* Style for the header element */
  /* Style the header */
  header {
    background-color: #ff8725;
    box-shadow: 0px 2px 5px rgb(0, 0, 0);
    padding: 20px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  
  header h1 {
    font-size: 36px;
    margin: 0;
  }
  
  header nav {
    display: flex;
    justify-content: initial;
    align-items: center;
    margin-top: 20px;
  }
  
  header nav ul {
    display: contents;
    list-style: none;
  }
  
  header nav ul li {
    margin-right: 20px;
  }
  
  header nav ul li:last-child {
    margin-right: 0;
  }
  
  header nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    width: 100%;
  }
  
  header nav ul li a:hover {
    color: #0077ff;
  }

  header nav select {
    writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height:normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    box-sizing: border-box;
    align-items: center;
    -webkit-rtl-ordering: logical;
    background-color: field;
    cursor: default;
    margin: 0em;
    border-width: 5px;
    border-style: solid;
    border-color: -(rgb(25, 193, 240), rgb(0, 0, 0));
    border-image: initial;
    border-radius: 100px;
}
  
  
  article a {
    display: inline-block;
    background-color: #0077ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
  }
  
  article a:hover {
    background-color: #005ae6;
  }
  
  /* Media queries */
  @media screen and (max-width: 768px) {}
    header {
      padding: 10px;
    }

  /* Style for the h1 element inside the header */
  header h1 {
    font-size: 36px;
    color: white;
    text-shadow: 1px 1px #333;
  }
  
  /* Style for the nav element */
  nav {
    background-color: #87ceeb;
    text-align: center;
    padding: 10px;
  }
  
  /* Style for the nav links */
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
  }
  
  /* Style for the main element */
  main {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px #000000;
  }
  
  /* Style for the h2 elements inside main */
  main h2 {
    color: #ff4800;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Style for the p elements inside main */
  main p {
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  /* Style for the footer element */
  footer {
    background-color: #ffab3e;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px;
  }
  footer a {
    display: inline-block;
    background-color: #0077ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
  }
  
  footer a:hover {
    background-color: #005ae6;
  }

  /* Style for the copyright notice inside footer */
  footer small {
    font-size: 12px;
  }
  