@font-face {
    font-family: 'balgrufregular';
    src: url('../fonts/balgruf-jrye7-webfont.woff2') format('woff2'),
         url('../fonts/balgruf-jrye7-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    color: white;
    font-family: Georgia, 'Times New Roman', Helvetica, serif;
    background-color: rgb(44,43,50);
    margin: 0;
}

.titlefont{
    font-family: "balgrufregular", 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

header {
    background: rgb(22, 34, 42);
    padding: 0 20px;
    align-items: center;
    height: 100px;
}

a {
    text-decoration: none;
    color: white;
}
a:hover {
    color: rgb(164,164,164);
}

.navbar{
    gap: 20px;
    list-style-type: none;
    padding: 0;
}

.logo {
    border-radius: 35%;
    width: 80px;
}
.logo img {
    border: 1px solid black;
}
.footer {
    background-color: black;
    height: 275px;
}
.divfooter {
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
}
.footertext {
    font-size: 150%;
    text-align: center;
    z-index: 1;
}
.footer img {
    border-radius: 5%;
}
.mookiecard {
    width: 25%;
    max-width: 250px;
    margin-right: 40px;
    border-radius: 5%;
}
.mookiecard img {
    width: 100%;
}
.captcha {
    height: 10%;
    width: 30%;
    font-size: 50%;
    margin-left: auto;
}

.sendfox-form .success, .error {
    position: absolute;
    left: -5000px;
}

.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.border {
    border: 1px solid lightblue;
}
.italic {
    font-style: italic;
}

.socialmedia ul {
    gap: 10px;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}
.socialmedia li img {
    width: 40px;
}
.socialmedia h2 {
    font-size: 150%;
    margin-bottom: 20px;
}
.grecaptcha-badge { visibility: hidden; }

@media screen and (max-width: 780px) {
    .divfooter {
        flex-direction: column;
    }
    .footer {
        height: 300px;
    }
    .mookiecard {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: 200px;
    }
}

@media screen and (max-width: 560px) {
    .logo {
        width: 50px;
    }
    .captcha {
        width: 100%;
    }
    .socialmedia h2 {
        font-size: 180%;
    }
    .footertext {
        font-size: 125%;
    }
}

@media screen and (max-width: 350px) {
    .logo {
        display: none;
    }
    .socialmedia h2 {
        font-size: 130%;
    }
}