@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda&family=Open+Sans&family=Oswald:wght@300&family=Source+Serif+4&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --green: #1ed760;
    --form-background: #f7f7f7;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.entry-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.entry { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #888;
    width: 100%;
    max-width: 500px;
}

.song-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

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

.title {
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.big-content {
    margin-top: 200px;
    font-size: 22px;
    font-family: 'Bodoni Moda', serif;
    max-width: 800px;
    text-align: center;
}

.content {
    font-size: 20px;
    font-family: 'Bodoni Moda', serif;
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
}

.info-content {
    font-size: 16px;
    font-family: 'Bodoni Moda', serif;
    margin-top: 10px;
}

.album {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.home {
    margin-bottom: 25px;
}

.sign-text {
    text-decoration: none;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    color: var(--black);
    padding: 10px 20px;
}

.sign {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid var(--black);
}

.sign:hover {
    background-color: var(--green);
}

.form-color {
    background-color: var(--form-background);
}

.center {
    display: flex;
    justify-content: center;
}

form {
    font-size: 16px;
    font-family: 'Bodoni Moda', serif;
}

fieldset {
    border: none;
    padding: 30px;
}

.mood-item {
    padding: 10px;
}

input[type="radio"]:checked {
    accent-color: var(--green);
}

.submit {
    margin-top: 20px;
    margin-bottom: 100px;
    background-color: var(--white);
    border: 1px solid var(--black);
}

.submit-text {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    color: var(--black);
}

.submit:hover {
    background-color: var(--green);
}


@media (max-width: 768px) {
    .title {
        font-size:40px;
    }

    .big-content, .content {
        font-size: 18px;
        width: 100%;
    }

    .info-content {
        font-size: 14px;
    }

    .entry {
        flex-direction: column;
        width: 90%;
    }

    .album {
        max-width: 200px;
    }

    .logo {
        width: 200px;
    }

    .sign-text {
        font-size: 18px;
    }

    .submit {
        width: 100%;
    }

    .big-content {
	margin-top: 150px;
}

@media (max-width: 480px) {
    .title {
        font-size: 30px;
    }

    .big-content, .content {
        font-size: 16px;
    }

    .album {
        max-width: 150px;
    }

    .logo {
	width: 100px;
    }

    .sign-text {
        font-size: 16px;
    }

    .big-content {
    	margin-top: 75px;
    }
}
