
html, body{
    box-sizing: border-box;
    height: 100%;
    margin: 0px;
    padding: 10px;
    background-color:rgb(75, 234, 245);
}

.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;
    grid-template-areas:
    ". . . . . . . . . . . ."
    ". . . h h h h h h . . ."
    ". . . h h h h h h . . ."
    ". . j j j j j j j j . ."
    ". . . . . . . . . . . ."
    "a a a a . . . . b b b b"
    "a a a a . . . . b b b b"
    "a a a a . . . . b b b b"
    ". . . c c c c c c . . ."
    ". . . c c c c c c . . ."
    ". . . c c c c c c . . ."
    ". . . . . . . . . . . ."
    "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"
    "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(189, 63, 179);
    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 #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}
.boxa{
    grid-area:a;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}

.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: #bbb;
    color: black;
  }
  

  .flip-box-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
  }

.boxc{
    grid-area:c;
    background-color: white;
    color: navy;
    border: 2px dotted blue;
}
.boxd{
    grid-area: d;
    background-color:white;
    border: 2px solid black;
    background-image: url('../images/IMG-0375.jpg');
    height: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(255, 182, 255),rgb(80, 146, 168) ,rgb(170, 239, 149) );
  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;
  text-align: center;
  font-size: 25px;
}
.flip-box1 {
  grid-area: a;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: 1px solid #f1f1f1;
}

.flip-box1-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box1:hover .flip-box1-inner {
  transform: rotateY(180deg);
}

.flip-box1-front, .flip-box1-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}


.flip-box1-front {
  background-color: #bbb;
  color: black;
}


.flip-box1-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}