body {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

main,
footer {
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #f8f8f8;
}

section {
    max-width: 100%;
    padding: 20px;
    margin: 30px;
}

.header-video {
    max-width: 100%;
    width: 100%;
    height: auto;
}

h1 {
    font-family: "revolution-gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    margin-top: 80px;
}

.two_columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 30px;
}

#studio {
    margin: 30px;
}

#studio img {
    max-width: 100%;
}

#social {
    /*border-top: 2px solid #f0f0f0;*/
    padding: 15px 0;
}

#social img {
    max-width: 60px;
    height: auto;
    padding-left: 5px;
}

.column {
    flex: 1;
}

.right img {
    max-width: 100%;
    height: auto;
}

.left img {
    max-width: 100%;
    height: auto;
}

.left {
    text-align: right;
}


p {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
    padding-top: 0;
}

#disco-playlist-20594596 {
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#original_reel {
    max-width: 800px;
    margin: 0 auto;
}

.youtube {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding-top: 56.25%;
    /* Relación de aspecto 16:9 (altura/ancho = 9/16 = 0.5625) */
}

.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#about,
#original_reel,
form {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

strong {
    text-transform: uppercase;
}

#social {
    /*border-top: 2px solid #f0f0f0;*/
    padding-top: 15px;
}

#social img {
    max-width: 60px;
    height: auto;
    padding-left: 5px;
}

form {
    color: #717a7f;
    max-width: 500px;
    margin-inline: auto;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

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

.fs-label {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 10px;
    text-align: left;
}

.fs-input,
.fs-select,
.fs-textarea {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;    
    border-radius: 20px;
    border-width: 0;
    box-shadow: 0 0 0 1px inset;
    color: gray;
    font-size: 1rem;
    height: 3rem;
    line-height: 1.5rem;
    outline: none;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 80%;
    margin-bottom: 20px;
    text-align: left;
}

.fs-textarea {
    min-height: 150px;
}

.fs-button {
    appearance: none;
    border-radius: 20px;
    border-width: 0;
    box-shadow: 0 0 0 1px inset;
    color: gray;
    font-size: 1rem;
    height: 3rem;
    line-height: 1.5rem;
    outline: none;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 800px) {
    .two_columns {
      flex-direction: column; /* Cambia las columnas a filas */
    }
    .left {
        text-align: left;
    }
    p {
        font-size: 18px;
    }
}