body{
    font-family: 'Fredoka', sans-serif;
    color: #555;
}

.text-own{
    color: #FFBF02;
}

.bg-own{
    background: #Ffbf02;
    color: black;
}

/*Register y login*/
.form-logo{
    max-width: 450px;
}

@media(max-width:450px){
    .form-logo{
        max-width: 250px;
    }
}

/*Navbar*/
.navbar-logo{
    height: 100px;
}

@media(max-width:500px){
    .navbar-logo{
        height: 50px;
    }
}

@media(max-width:350px){
    .navbar-logo{
        height: 30px;
    }
}

.alt-foto{
    display: block;
    width: 50px;
    height: 50px;
    float: right;
    margin-top: 0px;
    margin-right: 0px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    border: 2px solid #aaa;
    border-radius: 150px;
    background-color: #FFBF02;
}

@media(max-width:990px){
    .alt-foto{
        float: left;
    }
}

.user-imgbox{
    display: flex;
    width: 50px;
    height: 50px;
    float: right;
    margin-top: 0px;
    margin-right: 0px;
    justify-content: center;
    line-height: 50px;
    font-size: 25px;
    border: 2px solid #aaa;
    border-radius: 150px;
    overflow: hidden;
}

.user-img{
    display: block;
    height: 50px;
}

@media(max-width:990px){
    .user-imgbox{
        float: left;
    }
}

/*Content*/
.content{
    min-height: 450px;
}

.portada{
    display: block;
    margin: 0px auto;
    width: 25%;
    height: auto;
    border: 10px solid #888;
    border-radius: 40px;
    box-shadow: 20px 20px 20px #333;
}

@media(max-width:900px){
    .portada{
        width: 90%;
    }
}

/*Footer*/
#links a{
    text-decoration: none;
    color: white;
}

#links a:hover{
    color: #333;
}

/*Users edit*/
.img-edit{
    display: block;
    float: right;
    height: 90px;
    margin-right: 60%;
    border: 3px solid #555;
    overflow: hidden;
}

@media(max-width: 1000px){
    .img-edit{
        margin-right: 40%;
    }
}

@media(max-width: 600px){
    .img-edit{
        margin-right: 40%;
        height: 60px;
    }
}

/*Users index*/

.index-no-img{
    display: block;
    width: 70px;
    height: 70px;
    border: 5px solid #555;
    border-radius: 50%;
    background: #FFBF02;
    line-height: 60px;
    font-size: 35px;
}

.index-img{
    display: flex;
    width: 70px;
    height: 70px;
    border: 5px solid #555;
    border-radius: 50%;
    overflow: hidden;
    background: #ccc;
    justify-content: center;
    
}

.index-img img{
    display: block;
    height: 100%;
    margin: 0px auto;
    
}

/*Previsualizar imagen de input*/

.preview-file-div{
    display: flex;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 5px solid #555;
    overflow: hidden;
    background: #eee;
}

.preview-file{
    height: 100%;
    width: auto;
    margin: 0px auto;
    
}

/*Cartel voluntario apuntado en event index*/
.vol-sign{
    display: block;
    height: 150px;
    width: 300px;
    border: 5px solid red;
    border-radius: 25px;
    align-content: center;
    text-align: center;
    background: transparent;
    position: absolute;
    top: 5%;
    left: 36%;
}

.vol-sign p{
    display: block;
    margin: 0px auto;
    font-size: 70px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: red;

}

@media(max-width:950px){
    .vol-sign{
        left: 5%;
    }
}

@media(max-width:575px){
    .vol-sign{
        height: 75px;
        width: 150px;
        top: 35%;
        left: 27%;
    }

    .vol-sign p{
        font-size: 35px;
    }
}

