* {
    margin: 0;
    padding: 0;
    color: #edefff;
}

body, canvas {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #121225;
}

#search-bar {
    position: absolute;
    top: 40%;
    left: 50%;
    background-image: url(../searchIcon.png);
    background-position: 40% 40%;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 40px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(56, 61, 75, 0.75);
    border-radius: 50px;
    outline: none;
    font: 24px sans-serif;
    caret-color: transparent;
    transition: all ease-in-out 0.6s;
}

#search-bar:hover,#search-bar:focus {
    background-color: rgba(56, 61, 75, 0.75);
}

#search-bar:focus,
#search-bar:valid {
    padding: 0 20px 0 58px;
    background-position: 10px 40%;
    width: 30vw;
    caret-color: #edefff;
}

#time {
    position: absolute;
    top: 4%;
    right: 2%;
    font: 12vh sans-serif;
}

#made {
    position: absolute;
    bottom: 1%;
    left: 1%;
    color: #363649;
    font: 12px sans-serif;
}