
html, body{
    box-sizing: border-box;
    height: 100%;
    margin: 0px;
    padding: 10px;
    background-color:rgb(213, 230, 235);
}

.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 . . ."
    ". . k k k k k k k k . ."
    ". . . . . . . . . . . ."
    "a a a a . . . . b b b b"
    "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"
    "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(232, 30, 30);
    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 #13e600, 0 0 40px #ffffff, 0 0 50px #00e60f, 0 0 60px #0008e6, 0 0 70px #2ee600;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #4d5fff, 0 0 40px #4dff91, 0 0 50px #4d5fff, 0 0 60px #4dffff, 0 0 70px #4dffd5, 0 0 80px #4df9ff;
    }
}
.boxa{
    grid-area:a;
    background-color: white;
    color: rgb(255, 255, 255);
    border: 2px dotted rgb(246, 255, 0);
    text-align: center;
}
.boxa:hover{
  background-color: #b2eed8;
  color: rgb(95, 95, 95);
}
.boxb{
    grid-area:b;
    background-image:
    url('../images/mexico.jpg');
    border: 2px dotted rgb(246, 255, 0);
    text-align: center;
}
.boxb:hover{
  background-color: white;
  color:white;
}
.boxc{
    grid-area:c;
    background-color: white;
    color: rgb(45, 92, 45);
    border: 2px dotted rgb(246, 255, 0);
}
.boxd{
    grid-area:d;
    background-color:white;
    border: 2px solid black;
    background-image: url('../images/IMG-0535.jpg');
    height:100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.boxe{
    grid-area:e;
    color: rgb(45, 92, 45);
    border: 2px dotted rgb(246, 255, 0);
}
.boxe a:hover{
  color: #e60000;
}
.boxf{
    grid-area:f;
    color: rgb(159, 28, 28);
    border: 2px dotted rgb(246, 255, 0);
}
.boxf a:hover{
  color: #e60000;
}
.contentf{
    grid-area: z;
    background-color:white;
    border: 2px solid black;
    background: linear-gradient(to bottom right,lightpink,rgb(230, 214, 173) ,rgb(222, 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;
    color: rgb(45, 92, 45);
    border: 2px dotted rgb(246, 255, 0);
  background-image: url('../images/mexico3.jpg');
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    height: 100%;
    width: 120%;
    font-size:large;
    text-align: center;
}
.boxg a:hover{
  color: #e60000;
}
.boxi{
    grid-area:i;
    color: rgb(159, 28, 28);
    border: 2px dotted rgb(246, 255, 0);
    background-image: url('../images/mexico1.jpg');
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    height: 100%;
    width: 100%;
    font-size:large;
    text-align: center;
}
.boxi a:hover{
  color: #e60000;
}
.boxk{
  grid-area: k;
  background-color: white;
  color: rgb(225, 134, 212);
  border: 2px dotted rgb(246, 255, 0);
  text-align: center;
  font-size: 23px;
}
h2{
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 20px;
}
