@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Jost:ital,wght@1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Jost:ital,wght@1,100&family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');

* {
    margin: 0;
    box-sizing: border-box;;
}

html, body {
    height: 100%;
}

header {
    background-color: rgba(52, 95, 145, 0.75);
    color: white;
    margin: auto;
    height: 20%;
    width: 100%;
    text-align: center;
    padding: 30px;
}

#title {
    font-family: 'Caveat', cursive;
    font-size: 275%;
}

#subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 150%;
}

section {
    display: -webkit-flex;
    display: flex;
    height: 70%;
}

.search {
    margin: auto;
    height: 60%;
    width: 25%;
    padding: 10px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 150%;
}


label, input {
    padding: 20px;
    margin: 20px;
}

.lyrics {
    height: 100%;
    width: 75%;
    padding: 30px;
    overflow: auto;
    font-family: 'Prata', serif;
}

footer {
    background-color: #777;
    padding: 10px;
    text-align: center;
    color: white;
    height: 10%;
    font-family: 'Amatic SC', cursive;
    font-size: 150%;
}

button {
    background-color: rgba(52, 95, 145, 0.869);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}