    html {

      font-size:30px;
    }
    * {
      box-sizing: border-box;
    }
    body {
      background-color: #222;
      color: #fff;
      font-family: "Outfit", arial, sans-serif;
      display: grid;
      height: 98vh;
      background-image: url(../img/bg.png);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    @media screen and (max-width: 600px) {
      /* Styles for screens 600px and smaller (e.g., phones) */
      body {
      background-position: center 20%;
      }
    }
    main {
      margin: auto;
      padding-bottom: 10%;
      align-self: center;
      max-width: 80%;
    }
    img {
      margin: 0px auto;
      padding: 0;
      text-align: center;
      width: 80vw;
    }
    #ci {
      letter-spacing: -0.2em;
      color: #666;
    }
    footer {
      font-size: 0.7rem;
      text-align: right;
      align-self: self-end;
    }
    ul {
      text-align: center;
      position: relative;
    }
    li:has(a) {
      position: absolute;
      display: block;
      height:170px;
      width:170px;
      text-align: center;
      color: #ccc;
      font-weight: bolder;
      padding-top: 44px;
      cursor: pointer;
      /* background-image: url(../img/bg.png);
      background-size: cover; */
      background-color: rgb(153, 153, 153);
      border:10px solid rgba(153, 153, 153, 0);
      font-size: 40px;
      left:50%;
    }

    li:has(a):hover, li:has(a):active {
      color:white;
    }
    
    li:has(a):nth-of-type(1) {
      /* background-position: 12% 50%; */
      background-color: rgba(255, 0, 0, 0.2);
      margin-left: -180px;
      border:10px solid rgba(255, 0, 0, 0);
    }
    
    li:has(a):nth-of-type(1):hover {
      /* border:10px solid rgba(255, 0, 0, 0.5); */

    }
    

    li:has(a):nth-of-type(2) {
      background-color: rgba(228, 64, 95, 0.2);
      /* background-position: 90% 50%; */
      font-size: 80px;
      border:10px solid rgba(228, 64, 95, 0);
      padding-top: 20px;
      margin-left: 10px;
    }

    li:has(a):nth-of-type(2):hover {
      /* border:10px solid rgba(228, 64, 95, 0.5); */

    }
    
    a {
      color:inherit;
      text-decoration: none;
    }