*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
}

/* Middle */
.mid{
    width: 100%;
    height: 200vh;
    margin-top: 20px;
}
.midrap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 15px;
}
.box{
    display: grid;
    grid-template-columns: auto;
}

.box1 img{
    height: 80vh;
    border: 10px solid whitesmoke;
    box-shadow:  0 8px 18px 0 rgba(0,0,0,0.4);
}

/* Middle */

.mid1{
    width: 100%;
    height: 80vh;
}
.midrap1{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
}
.midrap2{
    padding-top: 25px;
    padding-left: 40px;
    padding-right: 40px;
}
.box4{
    display: grid;
    grid-template-columns: auto;
}
.box5 h3{
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.box5 p{
    font-size: 20px;
    text-align: center;
}

/* Footer */
.footer{
    width: 100%;
    height: 65vh;
    background-color: #ffffff;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
.footrap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}
.box12{
    padding-top: 30px;
}
.box13{
    display: grid;
    grid-template-columns: auto;
    grid-row-gap: 15px;
    border-radius: 30%;
    animation-name: example;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes example {
    0%   {border: 2px solid white;}
    25%  {border: 2px solid rgb(239, 11, 11);}
    50%  {border: 2px solid rgb(134, 199, 252);}
    75%  {border: 2px solid rgb(245, 224, 62);}
    100% {border: 2px solid rgb(116, 253, 85);}
}
#face{
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
    background-color: blue;
    color: white;
}
#face:hover{
    background-color: white;
    color: blue;
}
#insta{
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
    background-color: purple;
    color: white;
}
#insta:hover{
    background-color: white;
    color: purple;
}
#twit{
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
    background-color: skyblue;
    color: white;
}
#twit:hover{
    background-color: white;
    color: skyblue;
}
.box15{
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 35px;
}
.box16{
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 15px;
}
#loc1{
    font-size: 35px;
    color: blue;
    background-color: white;
    border-radius: 60%;
}
#phone{
    font-size: 35px;
    color: black;
}
.box18 p a{
    margin-left: 25px;
    text-decoration: none;
    font-size: 30px;
    color: rgb(0, 0, 0);
}
.box18 p a:hover{
    color: orange;
    border-bottom: 2px solid red;
}

/* Footer */
.footer1{
    width: 100%;
    height: 10vh;
    margin-top: 1px;
    background-color: white;
}
.footrap1{
    width: 80%;
    margin: auto;
}
.footrap1 p{
    padding-top: 20px;
    color: purple;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
}
#copy{
    color: black;
}

