@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button {
    cursor: pointer;
}

header {
    background-image: url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80');
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 0 20px;
}

form {
    margin: 100px auto;
    max-width: 100%;
    width: 500px;
    position: relative;
}

input {
    width: 100%;
    padding: 11px 25px;
    border-radius: 40px;
    font-size: 16px;
    border: 0;
}

form button {
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 40px;
    padding: 9px 25px;
    font-size: 16px;
    border: 0;
    background-color: rgb(215, 172, 255);
}

input:focus,button:focus {
    outline: none;
}

button:active {
    transform: scale(0.96);
}

.container {
    max-width: 100%;
    width: 500px;
    padding: 10px;
}

.container h2 {
    font-weight: 300;
}

.container p {
    text-align: center;
    margin: 8px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul li button {
    border-radius: 10px;
    padding: 4px 8px;
    border: 0;
    background-color: rgb(248, 55, 248);
    color: white;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav button, .back {
    background-color: crimson;
    color: white;
    margin: 20px;
    border: 0;
    padding: 8px 14px;
    border-radius: 14px;
}

.lyrics {
    max-width: 100%;
    width: 500px;
    padding: 10px 10px 20px 10px;
    display: none;
}

.back {
    display: none;
}

.back.show {
    display: block;
}

.lyrics.show {
    display: block;
} 

#result.hide {
    display: none;
}

.nav.hide {
    display: none;
}