@import url(https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap);

body, html {
    margin: 0;
    padding: 0;
    background-color: #D9D9D9;
    color: #284B63;
    min-height: 100vh;
    font-family: 'Lexend', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

a, a:visited, button {
    padding: 5px;
    color: #7692FF;
    text-decoration: none;
    background-color: #1C3041;
    border: #4A7C59 2px solid;
    border-radius: 10px;
}

a:hover, button:hover {
    background-color: #7692FF;
    color: #1C3041;
}

a.playlist{
    border: 0;
    background-color: transparent;
}

nav {
    padding: 15px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #89043D;
    height: 2.5%;
    
}

button, input {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-column {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main {
    display: flex;
    margin: auto 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.form-field-sign-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 23%;
}

.form-field{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 18%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.content-community {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playlist-line {
    display: flex;
    justify-content: space-between;
    min-width: 25vw;
}

section.options {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.edit-btn {
    margin-right: 15px;
}

.playlist-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80vw;
}

.song {
    margin: 10px 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 50%;
}

.song-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 20%;
}

.favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* .edit-btn, .new-btn {
    font-size: small;
} */

footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-left: 10px;
    background-color: #89043D;
    color: #D9D9D9;
    height: 5%;
}