@font-face {

    font-family: 'TimesNewPixel'; /*a name to be used later*/
    src: url(TimesNewPixel.ttf); /*URL to font*/
}
@font-face {
    font-family: 'Born2BSporty'; /*a name to be used later*/
    src: url(Born2bSportyV10.ttf); /*URL to font*/
}
@font-face {
    font-family: 'Operius';
    src: url(operius-regular.ttf);
}
button {
    font-family: TimesNewPixel;
    background-color: #8c6e9d; /* Green */
    border: 8px double #efea89;
    color: #ccc0d5;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}
button:hover{
    background-color: #2c2657;
    animation-duration: 1s;
    animation-name: miamilike-small;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.box {
    border: 8px double #efea89;
    background-color:#514172;
    padding: 16px;
    margin: auto;
    box-shadow: 8px 8px 2px 1px rgba(50, 50, 50, 0.111);
}
h1, h2, h3, h4, h5, h6 {
    font-family: Born2BSporty;
    color:#efea89;
  }
ul {
    display: inline-block;
    text-align: left;
    list-style-type: square;
    list-style-position: inside;
}
a, p, li, ul, ol, footer{
    
    font-family: TimesNewPixel;
    color: #ccc0d5;
}
a:visited {
    font-family: TimesNewPixel;
    color:#efea89;
}
body {
    background: #2c2657 url(purplesky.gif) fixed;
}
.navbar {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: center;
    display:flex;
    flex-direction: row;
}
.mainwrapper {
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  display: flex;
  flex-direction: row;
}

.sitetitle {
    animation-duration: 2s;
    animation-name: miamilike;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes miamilike {
	from { transform: rotate(-2deg); }
	to { transform: rotate(2deg); }
	from { text-shadow: 0 0 #89efea; }
	to { text-shadow: 8px 8px #ea89ef; }
}
@keyframes miamilike-small {
	from { transform: rotate(-2deg); }
	to { transform: rotate(2deg); }
	from { text-shadow: 0 0 #89efea; }
	to { text-shadow: 2px 2px #ea89ef; }
}
