/* @media only screen and (min-width: 600px) { */
@media (min-aspect-ratio: 1/1) {
	#content {
		margin: 0;
	}
}

.boton-inicio {
    width: 100px;
    height: 100px;
}

.content-welcome {
    margin: 0;
    margin-bottom: 3em;
    padding: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/static/model/images/inicio/bienvenida.jpg');
    background-size: auto 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* @media only screen and (min-width: 600px) { */
@media (min-aspect-ratio: 1/1) {
	.content-welcome {
        width: 99vw;
        /* height: 100vh; */
        right: calc((100vw - 100vh) / 2);
		background-size: 100vw auto;
        /* background-position: left; */
	}
}

.welcome-text {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    /* animation-name: text-animation; */
    animation-duration: 0.7s;
    animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 1.5);
}
.welcome-text h1 {
    margin: 0;
    padding: 0;
    color: rgb(var(--white));
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 5px 5px 5px black;
}
@keyframes text-animation {
    0% {
        left: -70%;
        transform: scaleX(1.5);
    }
    100% {
        left: 0%;
        transform: scaleX(1);
    }
}

.title-video {
    color: rgb(var(--words-silver));
    margin: 1rem;
}

.youtube-video {
    width: 90%;
    aspect-ratio: 560 / 315;
    padding-left: 5%;
    margin-bottom: 3em;
}
@media (max-aspect-ratio: 1/1) {
    .youtube-video {
        width: 70%;
    }
}

a {
    margin: 0;
    padding: 0;
}

.manage-header {
    transition-duration: 1s 1s;
    transition-property: background, padding;
    transition-timing-function: ease;
    background: linear-gradient(rgba(var(--header-blue), 1) 0% 30%, rgba(var(--header-blue), 0));
    padding-top: 1vh;
    opacity: 1;
}

.title-app {
    color: rgb(var(--words-silver));
}

.canciones-app-content {
    background-color: rgba(255,255,255,.6);
    border-radius: 50px;
    box-shadow: 10px 10px 5px silver;
    display: flex;
    align-items: center;
    padding: 5% 5% 5% 5%;
    margin: 0 10% 15px 10%;
    cursor: pointer;
}

.canciones-app-content img {
    width: 200px;
    border-radius: 30px;
}

.canciones-app-content .descriprion-app {
    width: 220px;
    margin-left: 15%;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media (max-aspect-ratio: 1/1) {
    .title-app {
        margin-left: 5%;
    }
    .canciones-app-content {
        flex-direction: column;
        align-items: center;
        padding: 5% 0 5% 0;
        margin: 0 0 15px 20%;
        width: 65%;
        border-radius: 20px;
    }
    .canciones-app-content img {
        width: 90%;
    }
    .canciones-app-content .descriprion-app {
        width: 90%;
        margin: 0;
    }
}
