h1 {
    text-align: center;
}

body {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    font-family: sans-serif;
    background-image: url("i10.jpg");
    background-size: 1000px 1000px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.submit-btn {
    background-color: orange;
    color: #fff;
    padding: 2%;
    font-size: 22px;
    margin-top: 10px;
    border: 0;
    cursor: pointer;
}

input {
    padding: 2%;
}

label {
    font-size: 20px;
    font-weight: bolder;
    margin: 10px 0;
}


@media (max-width: 500px){
    label {
        color: green;
    }
  }

  @media (min-width: 500px) and (max-width: 1000px){
    label {
        color: red;
    }
  }
  .animation2
  {

    position: relative;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    font-size: 2em;
    letter-spacing: 3px;
    overflow: hidden;
    background: linear-gradient(90deg, #691ef4, #fff, #691ef4);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
  }
  
  @keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }
  