body {
    background: white;
}



h1 {
font-family: "terfens",serif;
font-style: normal;
font-weight: 400;
font-size: 80px;
color: black;
text-align: center;
border-style: solid;
border-width: 7px;

}

h2 {
font-family: "terfens",serif;
font-style: normal;
font-weight: 400;
font-size: 30px;
color: black;
text-align: center;

}

h3 {
font-family: "terfens",serif;
font-style: normal;
font-weight: 400;
font-size: 80px;
color: black;
text-align: center;
text-decoration: underline;
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }


.headering{
    width:95%;
    margin:0 auto;
}

p.solid {border-style: solid;} 

p {
color: green;
font-family: "terfens",serif;
font-weight: 400;
font-size: 20px;
text-align: center;


}

.wrap{
    border: none 5px;
    width:100%;
    margin:0 auto;
}

.padding{
    padding: 10px;
}


<style>
.image {
   position: relative;
}

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

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

ul.a {
    list-style-type: circle;
    color: green;
font-family: "terfens",serif;
font-weight: 400;
font-size: 20px;
text-align: center;
}


}

.wrapper {
    margin: 20em auto 2em auto;
    width:80%;
    position:relative;
}

.dino {
    animation-name: slide;
    animation-duration: 4s;
    animation-timing-function: ease-in;
    animation-fill-mode:fowards;
    animation-iteration-count: infinite;
}

@keyframes slide {
    from {transform: translateX(0);}
    to {transform: translateX(1000px);}
}


