body{
    height: 100vh;
    background-color:steelblue;
    background-image: url(./assets/image.gif);
    background-size:cover;
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-position: center;
}
input{
    border: none;
    color: white;
    background-color: transparent;
    border-bottom: 1px solid white;
}
input::placeholder{
    color: white;
}
input:focus{
    outline: none;
}
div.card{
    background-color: rgba(255, 255, 255, 0.163);
    border: none;
    position: relative;
}
.clearfix{
    clear: both;
}
.remove{
    position: absolute;
    top: -8px;
    right: -5px;
    border: none;
    border-radius: 20px;
    padding:1px 4px;
    font-size: 0.7rem;
}
.remove:hover{
    opacity: 0.8;
}