@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Permanent+Marker&display=swap');
html {
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: "Inknut Antiqua", serif;
    font-weight: 400;
    font-style: normal;

}

.title{
    font-family: 'Permanent Marker', cursive;
    font-size: 2.8em;
    color: #c21a38;
}
.navbar {
    background-color: #c21a38;
}

.text-primary {
    color: #c21a38 !important;
}
.nav-link {
    font-size: 1.1em;
    color: #fff;
    padding-right: 50px;
}

.nav-link:hover {
    color: rgb(247, 191, 191);
}

.datos {
    background-color: black;
    color: #fff;
}

.border {
    border: 1px solid #cccc;
}

.logo{
    width: 160px;
}
.card,
.card-body {
    background-color: black;
    color: #fff;
}

.card-header {
    color: black;
}

#topBtn {
    color: #AFABAB;
    font-weight: 600;
    background: #000;
    border: 1px solid #AFABAB;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1;
    font-size: 2em;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

#topBtn:hover {
    background: #8ABEE1;
    color: #fff;
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
}

@media (max-width: 991px) {
    .datos h4,
    .datos span,
    .datos p,
    .datos h5,
    .datos h6 {
        font-size: 0.4em;
    }
    img {
        width: 100%;
    }
    .nav-link {
        font-size: 1em;
    }
    .nav-link:hover {
        font-size: 1.1em;
    }
    .navbar-brand img{
        width: 80%;
    }
    .title{
        font-size: 1.2em;
    }
}