body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #ffffff00;
    text-align: center;
    background: rgb(142,251,255);
    background: linear-gradient(-45deg, rgba(142,251,255,1) 0%, rgba(255,176,255,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-size: 48px;
}
form{
    width: auto;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: #ffffff;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.178);
}
#searchbar{
    height: 48px;
    width: 360px;
    border-radius: 48px;
    border: 3px solid #ffffff;
    background-color: #00000005;
    -webkit-box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.15);
}
#searchbar:hover{
    border: 3px solid #ffffff;
    cursor: pointer;
}
input[type=text]{
    color: #00000044;
    text-align: center;
    transition: transform .2s;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.178);
}
input[type=text]:hover{
    transform: scale(1.05);
}
#button{
    width: 52px;
    height: 52px;
    border-radius: 100%;
    border: 3px solid #ffffff;
    background-color: #00000011;
    color: #ffffff;
    transition: transform .2s;
    -webkit-box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.5);
box-shadow: 0px 0px 27px -10px rgba(0, 0, 0, 0.5);
}
#button:hover{
    transform: scale(1.2);
    cursor: pointer;
    border: 3px solid #ffffff;
}
#footer{
    color: #ffffffaa;
    bottom: 0px;
    position: absolute;
    text-align: center;
    width: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}
#footer a{
    color: #ffffff;
}
