body {
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    font-family: Arial, sans-serif;
    font-size: larger;
    color: #94bbe9;
    text-shadow: rgba(238,174,202,1) 1px 0 10px;
    text-align: center;
    font-weight: bold;
    }
main {
    background-color: white;
    margin: auto;
    width: 30%;
    padding: 20px;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
img {
    width: 150px;
    height: 150px;
    border-radius: 25%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(238,174,202,1);
}
main a {
    color: white;
    margin: 10px 0;
    text-decoration: none;
    font-size: 18px;
    background-color: #94bbe9;
    padding: 7px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(238,174,202,1);
}
a:hover {
    color:rgba(238,174,202,1);
    text-decoration: underline dotted;
    text-shadow: rgba(255, 255, 255, 1) 1px 0 10px;
    transition: all 0.5s;

}
footer{
    color: white;
    padding-top: 25px;
}
footer a{
    color: white;
    text-decoration: underline;
}
footer a:hover{
    text-decoration: underline dotted;
    text-shadow: rgba(255, 255, 255, 1) 1px 0 10px;	
}



/*MARK: ESTILOS COOKIES*/
#cookie_banner{
    align-items: center;
    background-color: white;
    bottom: 0;
    left:0;
    position: fixed;
    width:100%;
    padding:15px;
}
#cookie_banner form{
    display: flex;
    flex-direction:row ;
    justify-content: center;
    padding:15px;
}
#cookie_banner p,input,button{
    padding-left:15px;
    padding-right:15px;
}
#cookie_banner input[type=submit]{
    text-decoration: none;
    font-size: 18px;
    background-color: #94bbe9;
    padding-top: 0px;
    color:white;
    border:none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(238,174,202,1);
}
#cookie_banner input[type=submit]:hover {
    cursor: pointer;
    color:rgba(238,174,202,1);
    text-decoration: underline dotted;
    text-shadow: rgba(255, 255, 255, 1) 1px 0 10px;
    transition: all 0.5s;

}

#cookies_cancelar{
    margin-left: 10px;
    color: #94bbe9;
    background-color: white;
    border-radius: 10px;
    border-color: #94bbe9;
    box-shadow: 0 0 10px rgba(238,174,202,1);
    font-size: 17px;
}

#cookies_cancelar:hover{
    cursor:pointer;
}

@media only screen and (max-width: 700px) {
    main {
        width: 80%;
    }

    #cookie_banner{
        padding: 0;
        box-shadow:0 0 0.4em #94bbe9;
    }

    #cookie_banner form{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #cookie_banner p,input,button{
        height: 50px;
    }
  }
