  /* Dla tabletów */
@media (max-width: 768px) {
  body {
    max-width: 100%;
  }
}

/* Dla telefonów */
@media (max-width: 480px) {
  body {
    max-width: 100%;
  }
}
	body
        {
            margin: 0;
            text-align: center;
            font-family:Arial, Helvetica, sans-serif;
            font-size: clamp(21px, 6vw, 60px);
        }

        main
        {
            display: flex;
        }

        a
        {
            text-decoration: none;

            color: rgba(255, 255, 255, 0.7);
       

            width: 33.33%;
            height: 100vh;
             display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }

        #list
        {
            background-color: rgb(231, 180, 231);
        }


          #own
        {
            background-color: rgb(175, 175, 255);
        }

          #minecraft
        {
            background-color: rgb(182, 255, 182);
        } 

        #list, #own, #minecraft
        {
              transition: all 0.6s ease-in-out;
        }

    

         #list:hover
        {
            background-color: purple;
            box-shadow: inset 1px 1px 10px 5px rgb(27, 0, 40);

        }

        #own:hover
        {
            background-color: blue;
            box-shadow: inset 1px 1px 10px 5px rgb(3, 0, 40);
        }

           #minecraft:hover
        {
            background-color: green;
            box-shadow: inset 1px 1px 10px 5px rgb(11, 40, 0);
        }

        #list:hover, #own:hover, #minecraft:hover
        {
            color: rgba(255, 255, 255, 1);
            text-shadow: 1px 1px 8px black;
        }