 body {
    font-family: "PT Sans Caption", sans-serif;
}

main {
    min-height: 100vh;
    background-color: #f7ecde;
}
.form-control{
    transition: box-shadow 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.form-control:focus{
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255,193,7,0.2);
}
main h1 {
    position: relative;
    font-size: 50px;
    color: #352e28;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    isolation: isolate;
    display: inline-block; 
    padding: 0; 
    margin: 0 auto; 
    text-align: center;
    margin-bottom: 20px; 
}
main h1::before {
    content: "";
    position: absolute;
    width: 100%; 
    height: 40%; 
    left: 0;
    bottom: 0;
    background-color: #fec260;
    z-index: -1;
    transition: height 350ms ease-in-out;
}

main h1:hover::before {
    height: 70%; 
}

main h3 {
    font-family: "Righteous", cursive;
    font-size: 25px;
    background-image: linear-gradient(to right, #3ca55c, #b5ac49);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.dataInput {
    border-style: dotted;
    border-left: none;
    border-right: none;
}

.fa-book,.fa-link{
    padding:5px 7px ;
}
.btn-visit {
    background-color: #9EB23B;
}
.btn-visit:hover ,.btn-delete:hover{
    border-color: rgb(41, 40, 40);
    background-color: #9EB23B ;
}
