body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Roboto', sans-serif;
}

#map { 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    width: 100%; 
    z-index: 0;
}

.blackbackground {
    background-color: black;
    width: 100%; 
    height: 100%;
    position: fixed;
    z-index: -1;
}

.rearcamera video {
    position: absolute;
    display: block;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    right: 0px;
    top: 0px;
    height: 100%;
    width: auto;
}

.searching {
    z-index: 0;
}

form.searchbar {
    /* background-color: red; */
    z-index: 0;
    width: 400px;
    height: 50px;
    margin-top: 1%;
    margin-left: 520px;
    position:fixed;
}

input {
    width: 360px;
    height: 50px;
    display: block;
    padding: 10px 20px 10px 50px;
    border-style: none;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    border-radius: 0.2rem;
    background-image: url(../assets/magnifying-glass-regular.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left center;
    background-position-x: 20px;
}

input[type="search"]::placeholder {
    color: lightgray;
    font-weight: bold;
  }

  .sidebar {
    background-color: white;
    height: 100%;
    margin-left: 70px;
    width: 430px;
    position: fixed;
    left: 0;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    z-index: 1;
}

.songname {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 200px;
    width: 430px;
    border: 5px;
    /* border-color: red solid; */
    /* background-color: pink; */
}

.songdescription {
    margin-right: 5px;
}


img {
    width: 170px;
    border-radius: 0.5rem;
    margin-left: 40px;
    margin-top: 20px;
}

.websitedescription {
    padding-left: 40px;
    padding-right: 40px;
}
