:root {
    --kavalir-color: #323232;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-image: url('../img/bg_image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Makes the background static */
}

html {
    height: 100%;
}

.main-wrapper {
    min-height: 76vh;
    min-height: 100%;
    min-width: 100%;
}

#header {
    min-height: 12vh;
    background-color: var(--kavalir-color);
}

#header .a {
    color: white;
    background-color: var(--kavalir-color);
}

#footer {
    background-color: var(--kavalir-color);
    min-height: 12vh;
}

#logo {
    max-height: 8vh;
}

.text_cubed {
    font-size: 0.8rem;
}

.mobile-nav {
    background-color: var(--kavalir-color);
}

.lang-btn {
    border: none;
}

html {
    overflow-y: scroll;
}

/* Make cards full width on mobile */
@media (max-width: 576px) {
    .card {
        width: 100% !important;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
    }

    body {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}