*{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans Mono', monospace;
font-family: 'Roboto', sans-serif;
}

#background {
    background-image: linear-gradient(black, white);
    max-width: 1400px;
    width: 100%;
    height: 500px;
    }




#background:hover {
    background-image: linear-gradient(brown, yellow, white);
    transition: width 2s, height 4s;
}

.background_page {
    background-image: linear-gradient(rgb(228, 222, 222), rgba(241, 203, 109, 0.879));
    border-radius: 5px;
    width: 600px;
    height: 450px;
    position: absolute;
    left: 30px;
    top: 30px;
    border: 15px;
    border-color: red;
    border-bottom-left-radius: 100px;
}

.input_area {
    padding-top: 15px;
}

.signup {
    color: white;
    background-color: red;

    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.image {
    width: 600px;
    height: 450px;
    position: absolute;
    left: 600px;
    right: 30px;
    bottom: -2px;
    border-radius: 5px;
    border-bottom-right-radius: 100px;
    animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
}

@keyframe fade-frames {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0.7;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes scale-frames {
    0% {
      transform: scale3d(0.4, 0.4, 1);
    }
  }

.name{
    display: block;
    margin-left: 100px;
    font-size: small;
    color: brown;
}

.listForm {
    display: block;
    margin: auto;
    background-image: linear-gradient(white, rgb(183, 117, 19));
    color:  black;
    width: 300px;
    height: 35px; 
    margin-bottom: 10px;
    border-radius: 15px;
    border-color: yellow;
    cursor: pointer;
}

.lists:hover {
    background-color: white;
}

.send:hover {
    background-image: linear-gradient(yellow, black);
}

.send {
    background-image: linear-gradient(yellow, white);
    margin-top: 20px;
    width: 100px;
    display: block;
    margin: auto;
    line-height: 20px;
    border-radius: 5px
}

.sign {
    font-size: small;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.icons_1 {
    width: 20px;
    height: 20px;
   display: inline-block;
   margin: auto;
}

@media (max-width:500px) {
    .image {
        display: none;
    }
    #background {
        background-image: linear-gradient(white, purple,);
    }

    #background:hover{
        display: none;
    }
    .background_page{
    width: 300px;
    margin-left: 30px;
    }

    .listForm {
        height: 25px;
        width: 150px;
    }
}

