/* 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." */

body {
  
  background-image: url("img/orange tile.png");
  background-repeat: repeat;
  color: #f7812a;
  font-family: Verdana;
  display:flex; flex-direction:column; justify-content:center;
  min-height:100vh;
  margin: 0px;
  padding: 0px;
  
}


    .OutlineTextOrange {
    text-shadow:
    /* Outline */
    -1px -1px 0 #ff9d2e,
    1px -1px 0 #ff9d2e,
    -1px 1px 0 #ff9d2e,
    1px 1px 0 #ff9d2e,  
    -2px 0 0 #ff9d2e,
    2px 0 0 #ff9d2e,
    0 2px 0 #ff9d2e,
    0 -2px 0 #ff9d2e;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
.class-name {
    display: flex;
    justify-content: center;
}
@media only screen and (min-width: 900px) {
    .class-name img {
    max-width: 500px;
    }
}

.class-name img {
    max-width: 100%;
}

.img{
    display: flex;
    flex-wrap: wrap;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.chome {
  width: 250px;
  height: 150px;
  border-style: dashed;
  border-width: 2px;
  border-color: #ffc874;
  background-color: rgba(255,200,116,0.8);
  margin-top: 2px;
  margin-right:auto;
  margin-left:auto;
  padding: 0px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  text-align: center;
}
.column {
  float: left;
  display:flex;
}

.cleft {
  float: left;
  width: 22%;
  height: 360px;
  border-style: dashed;
  border-width: 2px;
  border-color: #ffffff;
  background-color: rgba(255,200,116,0.8);
  margin-right: 10px;
  margin-left: 3%;
  margin-top: 2px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  text-align: center;
}


.cright {
  float: right;
  width: 70%;
  height: 650px;
  border-style: dashed;
  border-width: 2px;
  border-color: #ffc874;
  background-color: rgba( 255, 255, 255, 0.3);
  margin-right: 2%;
  margin-top: 2px;
  margin-bottom: 30px;
  padding: 5px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  text-align: center;
}

.cdefault {
  position: relative;
  z-index: 100;
  width: 50%;
  height: 100px;
  border-style: dashed;
  border-width: 2px;
  border-color: #ffc874;
  background-color: rgba( 255, 255, 255, 0.3);
  margin-right: 2%;
  margin-top: 2px;
  margin-bottom: 30px;
  padding: 5px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  text-align: center;
}


ul:after{
 content:'';
 clear:both;
 display:block;
overflow:hidden;
}
li
{
    display: inline;
}
.hidden
{
    display: none;
}
.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
 /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
} 

/* Dashed border */
.dashed {
 border-top: 1px dashed;
 border-bottom: none;
 margin-bottom: 0px;
 margin-top: 0px;
}
.container {
  display: none;
   height: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    
}
.container.showing {
  display: unset;
   height: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;

}

a>span { display: none; }
a:hover>span {
  display: block;
  position: absolute;
  bottom: 250px;
  left: 2%;
  }
  
.snowflake {
            color: #fff;
            font-size: 1em;
            font-family: Arial;
            text-shadow: 0 1px 2px #fff;
        }

        @-webkit-keyframes snowflakes-fall {
            0% {
                top: -10%
            }

            100% {
                top: 100%
            }
        }

        @-webkit-keyframes snowflakes-shake {
            0% {
                -webkit-transform: translateX(0px);
                transform: translateX(0px)
            }

            50% {
                -webkit-transform: translateX(80px);
                transform: translateX(80px)
            }

            100% {
                -webkit-transform: translateX(0px);
                transform: translateX(0px)
            }
        }

        @keyframes snowflakes-fall {
            0% {
                top: -10%
            }

            100% {
                top: 100%
            }
        }

        @keyframes snowflakes-shake {
            0% {
                transform: translateX(0px)
            }

            50% {
                transform: translateX(60px)
            }

            100% {
                transform: translateX(0px)
            }
        }

        .snowflake {
            position: fixed;
            top: -10%;
            z-index: 9999;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: default;
            -webkit-animation-name: snowflakes-fall, snowflakes-shake;
            -webkit-animation-duration: 22s, 15s;
            -webkit-animation-timing-function: linear, ease-in-out;
            -webkit-animation-iteration-count: infinite, infinite;
            -webkit-animation-play-state: running, running;
            animation-name: snowflakes-fall, snowflakes-shake;
            animation-duration: 18s, 6s;
            animation-timing-function: linear, ease-in-out;
            animation-iteration-count: infinite, infinite;
            animation-play-state: running, running
        }

        .snowflake:nth-of-type(0) {
            left: 1%;
            -webkit-animation-delay: 0s, 3s;
            animation-delay: 0s, 3s
        }

        .snowflake:nth-of-type(1) {
            left: 10%;
            -webkit-animation-delay: 2s, 2.5s;
            animation-delay: 2s, 2.5s
        }

        .snowflake:nth-of-type(2) {
            left: 20%;
            -webkit-animation-delay: 6.5s, 5s;
            animation-delay: 6.5s, 5s
        }

        .snowflake:nth-of-type(3) {
            left: 35%;
            -webkit-animation-delay: 4s, 3s;
            animation-delay: 4s, 3s
        }

        .snowflake:nth-of-type(4) {
            left: 40%;
            -webkit-animation-delay: 10s, 4s;
            animation-delay: 10s, 4s
        }

        .snowflake:nth-of-type(5) {
            left: 50%;
            -webkit-animation-delay: 8s, 3s;
            animation-delay: 8s, 3s
        }

        .snowflake:nth-of-type(6) {
            left: 60%;
            -webkit-animation-delay: 12s, 3s;
            animation-delay: 12s, 3s
        }

        .snowflake:nth-of-type(7) {
            left: 75%;
            -webkit-animation-delay: 8.8s, 1s;
            animation-delay: 8.8s, 1s
        }

        .snowflake:nth-of-type(8) {
            left: 80%;
            -webkit-animation-delay: 9s, 3s;
            animation-delay: 9s, 3s
        }

        .snowflake:nth-of-type(9) {
            left: 90%;
            -webkit-animation-delay: 10s, 5s;
            animation-delay: 10s, 5s
        }
        .snowflake:nth-of-type(10) {
            left: 50%;
            -webkit-animation-delay: 3s, 5s;
            animation-delay: 3s, 5s
        }       
        .snowflake:nth-of-type(11) {
            left: 70%;
            -webkit-animation-delay: 4s, 4.6s;
            animation-delay: 4s, 4.6s
        }   
        .snowflake:nth-of-type(12) {
            left: 10%;
            -webkit-animation-delay: 6s, 2s;
            animation-delay: 6s, 2s
        }   