@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Engagement&display=swap');
html {
    height: 100%;
}
body {
    height: auto;
    background: #FAF1E4;
    color: #000;
}
a {}
a:hover {}
p, ul li, ol li {
    font-size: 0.83vw;
}
h1, h2, h3, h4, h5 {
    font-family: "Caveat", cursive;
}
.navFix {
    box-shadow: 0 0px 6px -2px rgba(0, 0, 0, 0.6705882352941176);
}
.navbar {
    background: #fff;
    font-family: "Caveat", cursive;
    height: auto;
}
.navbar-brand {
    margin: 5px 0;
    text-transform: uppercase;
    color: #000;
}
.navbar a {
    color: #000;
}
.navbar ul li a {}
.navbar ul li a:active {}
.navbar ul li a:hover {}
.navbar .fas {
    color: #fff;
}
.btn {
    border-radius: 5px;
    padding: 5.5px 20px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
}
.btn:not(.btn-danger):not(.btn-primary) {}
.btn:hover:not(.btn-danger):not(.btn-primary) {}
.btn-file {
    position: relative;
    overflow: hidden;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    font: inherit;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    min-width: 100%;
    min-height: 100%;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: black;
    cursor: inherit;
}
.btn:not(.btn-file):active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}
.alert {
    margin: 0 auto 15px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .20);
    z-index: 10;
}
.cursor {
    cursor: pointer;
}
.box {
    background: #fff;
    border: 5px double #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .30);
}
img.fancyframe {
    box-shadow: -50px -50px 0 -40px tomato, 50px 50px 0 -40px tomato;
}
#header {
    margin-top: 80px;
    position: relative;
    height: 20vw;
}
#header div {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: #bbb 3px 2px 2px;
    font-family: 'Engagement', cursive;
    font-weight: 400;
    font-size: 6.9vw;
    color: #fff;
}
#main {
    position: relative;
    min-height: 90vh;
}
#footer {
    position: relative;
    display: block;
    padding: 15px 0;
    background: #db6727;
    color: #222;
}
#footer .bottom {
    background: #9EB384;
    color: #fff;
}
@media (max-width: 640px) {
    h1, h2, h3, h4, h5 {
        font-size: 6vw;
    }
    p, ul li, ol li {
        font-size: 4vw;
    }
    #header {
        height: 40vw;
    }
}