/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*------------------------------------------------------------Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Nabla&family=Zen+Dots&display=swap');

body {
    color: #0080fe;
    font-family: sans-serif;
    background-color: grey;
    background-image: url(https://64.media.tumblr.com/9056eaadcd5ebc44d1ee74c678bf50dc/147bfebdf112f180-d5/s400x600/22756df2aa41bfb0d5ae3a3a044e1ea632ecc1a9.gifv);
    background-repeat: repeat;
    width: 800px;
    margin: auto;
    padding: 1px;
}



/*------------------------------------------------------- Dividers */

div {
    width: auto;
    margin: 50px;
    text-align: center;
}

div.menu {
    width: 140px;
    margin: auto;
}

div.content {
    color: white;
    background-color: black;
    padding: 20px;
    border-radius: 25px;
    border: 5px solid #0080fe;
    text-align: left;
}

/*----------------------------------------------------------  Text */

p {
    font-weight: bold;
    font-size: 18px;
    margin: 1px;
}

a {
    font-weight: bold;
    font-size: 20px;
    margin: 1px;
    color: #0080fe;
    vertical-align: middle;
}

span
{
  display: inline-block;
  vertical-align: middle;
  line-height: 18px; /* <-- adjust this */
}

h1 {
    color: #dcbe50;
    font-weight: bold;
    font-size: 50px;
    margin: 1px;
}

/*-------------------------------------------------- Blinking Text */


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: red 1;
    }
}

.blinking-text {
    text-align: center;
    color: green;
    animation: blink 1s infinite;
    font-weight: bold;
}

a:hover {
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: fading;
    animation-duration: 0.5s;
    animation-name: fading;
    animation-iteration-count: infinite;
    font-weight: bold;
}
@-webkit-keyframes fading {
    from {
        color: #0080fe;
    }
    to {
        color: #00e2e2;
    }
}
@keyframes fading {
    from {
        color: #0080fe;
    }
    to {
        color: #00e2e2;
    }
}