@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');

main {
    background: url(../img/splash_background.jpg) fixed center;
    background-size: cover;
}
header {
    /*height: 110px;*/
    z-index: 10;
}

body {
    font-family: 'Amatic SC', cursive;
}

.logo-img{
    height: 100px;
    margin: 5px 0;
}
.row .col {
    width: auto;
}

.row {
    justify-content: center;
}

.baba-contact-form {
    color: black;
}

.cover-container {
    max-width: 42em;
    background-color: #ffffffad;
    color: #51413b;
}

.cover-container .form-control {
    background-color: #ffffff5c;
    border: 1px solid #ffffff;
}

footer {
    background-color: #9f9f9f !important;
}


/*rest*/

.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
    transform:translateY(0); transition: all 0.3s ease-in-out;
}