* {
    /*margin: 0;*/
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic', sans-serif;
  }
  
  body {
    background-color: #121212;
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.6;
  }
  
  h1, h2 {
    text-align: center;
    color: yellow;
    font-family: 'Century Gothic', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  p {
    font-size: 1.2em;
    text-align: center;
    color: #d0d0d0;
  }

  .info {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    max-width: 1200px;
    justify-content: center;
    margin: 2rem auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(225, 255, 0, 1);
    border-radius: 100px;
    border: 10px solid yellow;
  }

  .info h2 {
    font-size: 1.8rem;
    color: yellow;
  }
  
  .info ul {
    list-style-type: none;
  }
  
  .info li {
    margin: 0.5rem 0;
    font-size: 2rem;
    max-width: 1200px;
  }

  .info li:hover {
    color: black;
    font-weight: bold;
    background-color: cyan;
    box-shadow: 0 0 10px cyan;

    cursor: pointer;
  }

  .content {
    top:0;
    left:0;
    opacity: 0;
    transform: 0.6s;
    transition: opacity 0.3.s ease;
  }

  .content:hover {
    opacity: 1;
  }

  /* Header */
  header {
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
  }
  
  header p {
    font-size: 1.5em;
  }
  
