/* 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." */

body {
    background-image: linear-gradient(rgb(141, 141, 228),azure);
}

header {
      margin: auto;
      width: 20%;
      text-align: center;
}

.undertext {
      text-align: center;  
}

ul {
  list-style-type: none; 
  padding: 0; 
  margin: 0; 
}

h1 {
    color: rgb(255, 0, 0);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 1px 1px 3px rgb(50, 50, 60);
}

span {
    font-weight: bolder;
}

label {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

img {
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 3px 3px 10px #999;
}

label:focus-within {
    color: blue;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    transition: 0.3s ease;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: 'Franklin Gothic Medium', sans-serif;
    font-size: 30px;
    text-shadow: 2px 2px 3px rgb(40, 50, 60);
}

@keyframes blinker {
    50% {
        opacity: 0;
        }
}
