/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
      
      
      .center
      {
        margin: auto;
        text-align: center;
        background-color: black;
        width:400px;
        border: 5px solid white;
        border-radius: 10px;
      }
      
      /*.pbox{
        border-style: dotted;
        border-radius: 20px;
        margin: 20px;
        padding: 11px;
        overflow: auto;
        color: #3B535C;
        background-color: #73B6D9;
      }*/
      .dots
      {
        right: 0;
        bottom: 0;
        position:absolute;
      }
        html
        {
          background: url("/images/arcade.png"), repeat;
        }
        body
        {
          cursor: url("openP.png");
        }
        header
          {
            font-size: 70px;
            font-weight: bold;
            color: white;
          }
        p
          {
            color: #43772C; 
          }
        ul
          {
            text-align: center;
            left: 30px;
            position: absolute;
            list-style-type: none;
            background-color: #1F1D1D;
            margin: 0;
            padding: 0;
            width: 200px;
            border: 4px dotted white;
            border-radius: 10px;
          }
        li{padding:10px;}
        li a
        {
            font-size: 25px;
            text-decoration: none;
        }
        li a.hover
        {
          cursor:url("closeP.png"), pointer;
        }
      
   /*
      body
        {
          text-align: center;
          font-size: 50px;
        }
      div
        {
          font-size: 25px;
          font-family: "Times New Roman";
          text-align: center;
        }
      p.border
        {
          border: 5px solid #208ccd;
          border-radius: 15px;
          padding: 30px;
          width: 400px;
          margin: 40px;
        }
        /* Create three equal columns that floats next to each other */
        
      /*
      .column
        {
          float: left;
          width: 30%;
        }
        /* Clear floats after the columns */
  /*
      .row::after 
        {
          content: "";
          display: table;
          clear: both;
        }*/
        /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
    /*
    @media screen and (max-width:900px) 
      {
      .column 
        {
          width: 300px;
        }
      } */