
html, body{
    box-sizing: border-box;
    height: 100%;
    margin: 0px;
    padding: 10px;
    background-color:rgb(14, 15, 43);
}

.container{
    justify-content: center;
    height:100%;
    display: grid;
    grid-gap: 5px;
    border: bold 2px;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: 40px 40px 40px 40px 40px 
    100px 100px 100px 100px 100px 
    100px 100px 100px 100px 100px 
    100px 100px 100px 100px 100px
    100px 100px 100px 100px 100px
    100px 100px 100px 100px 100px;
    grid-template-areas:
    ". . . . . . . . . . . ."
    ". . . h h h h h h . . ."
    ". . . h h h h h h . . ."
    ". . y y y y y y y y . ."
    ". . . . . . . . . . . ."
    "a a a a a . . b b b b b"
    "a a a a a . . b b b b b"
    "a a a a a . . b b b b b"
    "a a a a a . . b b b b b"
    ". . . . . . . . . . . ."
    "c c c . m m m . n n n ."
    "c c c . m m m . n n n ."
    "c c c . m m m . n n n ."
    ". . . . . . . . . . . ."
    "d d d d d d d d d d d d"
    "d d d d d d d d d d d d"
    "d d d d d d d d d d d d"
    "d d d d d d d d d d d d"
    "d d d d d d d d d d d d"
    ". . . . . . . . . . . ."
    "e e e e . . . . f f f f"
    "e e e e . . . . f f f f"
    "e e e e . . . . f f f f"
    ". . . . . . . . . . . ."
    "g g g g . . . . i i i i"
    "g g g g . . . . i i i i"
    "g g g g . . . . i i i i"
    "z z z z z z z z z z z z"
    "z z z z z z z z z z z z"
    "z z z z z z z z z z z z";
}
.boxh{
    grid-area: h;
    font-family: 'Times New Roman', Times, serif;
    border: 2px solid black;
    font-size: 50px;
    color: rgb(63, 78, 189);
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }
@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px rgb(228, 247, 233), 0 0 20px rgb(162, 204, 164), 0 0 30px #94dea5, 0 0 40px #00e649, 0 0 50px #26e600, 0 0 60px #049626, 0 0 70px #046028;
    }
    to {
      text-shadow: 0 0 20px rgb(228, 247, 233), 0 0 20px rgb(162, 201, 204), 0 0 30px #94dede, 0 0 40px #00e6cb, 0 0 50px #00e6ad, 0 0 60px #049665, 0 0 70px #04604e;
    }
}
.flip-box1 {
    grid-area: a;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f1f1;
  }
  
  .flip-box-inner1 {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-box1:hover .flip-box-inner1 {
    transform: rotateY(180deg);
  }
  
  .flip-box-front1, .flip-box-back1 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
  }
  

  .flip-box-front1 {
    background-color: rgb(161, 245, 245);
    color: black;
  }
  

  .flip-box-back1 {
    background-color: rgb(162, 199, 205);
    color: rgb(9, 15, 48);
    transform: rotateY(180deg);
  }
.a:hover .boxa{
    color:#040a2b;
    font-size: 20rem;
}

.flip-box {
    grid-area: b;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f1f1;
  }
  
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
  }
  

  .flip-box-front {
    background-color: rgb(161, 245, 245);
    color: black;
  }
  

  .flip-box-back {
    background-color: rgb(162, 199, 205);
    color: rgb(9, 15, 48);
    transform: rotateY(180deg);
  }
.boxc{
    grid-area:c;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxd{
    grid-area:d;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
    background-image: url('../images/snow\ on\ mountain.jpg');
    height:100%;
    width:100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.boxe{
    grid-area:e;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxf{
    grid-area:f;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.contentf{
  grid-area: z;
  background-color:white;
  border: 2px solid black;
  background: linear-gradient(to bottom right,rgb(187, 182, 255),lightblue ,rgb(149, 239, 204) );
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 20px;
}
.img{
  width:8rem;
  height:8rem;
}

.fa{
  padding: .3rem;
  text-align: center;
  text-decoration: none;
  margin: 0.4rem 0.4rem;
}
.fa:hover{
  opacity: 0.7rem;
}
.fa-snapchat{
  background-color: #fffc00;
  color: black;
  
}
.fa-instagram{
  background-color: #b04cb4;
  color: white;
}
.fa-twitter{
  background-color: #55acee;
  color: white;
}
.fa-facebook{
  background-color: #3B5998;
  color: white;
}
.images{
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
}
.index{
  text-align: left;
}

.form {
  border: .4rem solid #f1f1f1;
  padding: .2rem .4rem .3rem 20rem;
}

.input[type=text], input[type=submit] {
  border: 0.4rem solid #ccc;
  width: 100px;
  padding: 0.2rem;
  margin: 0.2rem 0;
  display: inline-block;
  box-sizing: border-box;
  background-color: rgb(221, 175, 240);
}

.input[type=submit] {
  background-color: #04AA6D;
  color: white;
  border: 0.4rem solid purple;
} 

.input[type=submit]:hover {
  opacity: 0.8rem;
}

.boxg{
    grid-area:g;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxi{
    grid-area:i;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxj{
    grid-area:j;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxk{
    grid-area:k;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxm{
    grid-area:m;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxn{
    grid-area:n;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.contenty{
    grid-area: y;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
    text-align: center;
    font-size: 25px;
}
.image {
    opacity: 1;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
}
  
.middle {
    transition: .3s ease;
    opacity: 0;
    position: absolute;
    top: 70%;
    left: 30%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
 }

.container:hover .image {
    opacity: 0.2;
  }
  
.container:hover .middle {
    opacity: 1;
  }
  
.text {
    background-color: #040a2b;
    color: white;
    font-size: 16px;
    padding: 5px 5px;
  }
  h2{
    color: rgb(10, 33, 40);
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
  }
