body{
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    overflow-y: hidden;
}

.buscador{
    width: 70%;
    border: none;
    background-color: white;
    border-radius: 15px;
    height: 40px;
    padding: 5px;
    padding-left: 15px;
    margin-top: 20px;
}

.boton{
    width: 5%;
    cursor: pointer;
    background-color: none;
    border: 3px solid black;
    transition: 0.5s;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    margin-right: 10px;
}

.boton:hover{
    transform: scale(1.1);
}

.form{
    display: flex;
    text-align: center;
    width: 90%;
}

.videos{
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    height: 80vh;
    overflow-y: scroll;
    overflow-x: hidden;
    row-gap: 20px;
    padding: 20px;
}

.doc{
    text-align: left;
    font-size: x-large;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.8);
    transition: 1s;
    display: flex;
    text-align: left;
}

.doc:hover{
    transform: scaley(1.1);
    margin-top: 10px;
    margin-bottom: 10px;
}

a{
    text-decoration: none;
    color: black;
}

label{
    color: white;
    -webkit-text-stroke: 0.2px black;
}

.msg{
    background-color: white;
    border-radius: 15px;
    height: 20px;
    margin-bottom: 20px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

button{
    margin-left: 10px;
    height: 40px;
    border-radius: 50%;
    width: 40px;
    border: none;
    background-image: linear-gradient(135deg, #764ba2 0% , #667eea 100%);
}

.a{
    margin-right: auto;
}