@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

html,
body {
    height: 100%;
}

body {
    font-family: "Quicksand", sans-serif;
    color: black;
    line-height: 1.5em;
    background-image: url(../img/SVG/home.svg);
    background-repeat: repeat-x;
    /*    background-size: 70%;*/
    background-clip: border-box;
    background-position: bottom;
    background-attachment: fixed;
    font-size: 1em;
}

a {
    color: black;
    text-decoration: none;
}

.smalltitle {
    font-size: 1em;
    font-weight: bold;
}

h2 {
    font-size: 1em;
    font-weight: normal;
}

.caption {
    font-size: 0.8em;
    font-style: italic;
}

td {
    text-align: left;
    padding-right: 20px;
}

ul {
    list-style: none;
    font-size: 1.2em;
    font-style: bold;
    margin: 0;
    padding: 0;
}

textarea,
input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-family: Quicksand;
}

.logoheader {
    justify-content: center;
    align-content: center;
    align-items: center;
    vertical-align: center;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    max-width: 1000px;
    margin: auto;

}

.indexlogo {
    grid-column: 2;
    align-items: stretch;
}

.svglink {
    cursor: pointer;
}

.vignette-cls-1 {
    clip-path: url(#clippath);
}

.vignette-cls-2 {
    fill: none;
    stroke: #de4316;
    stroke-width: 6px;
}

.main-nav {
    grid-area: nav;
    font-weight: 600;

}

.main-text {
    display: grid;
    margin: auto;
    grid-template-columns: 1fr 7fr 1fr;
    grid-column-end: span 3;
    text-align: justify;
}

.main-footer {
    height: 15%;
}

.fee-grid {
    display: grid;

    grid-template-columns: 3fr 1fr;

    text-align: justify;
}

.wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
        "header"
        "nav"
        "content";
    text-align: center;
    margin: auto;
    height: 100%;
}

.content {
    grid-area: content;
    margin: auto;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.home {
    margin: auto;
    display: grid;

}

.vignette {
    min-width: 150px;
}

@media (min-width: 500px) {
    body {
        background-size: 50%;
    }

    .wrapper {
        height: 90%;
        grid-template-columns: 1fr 3fr;
        grid-template-areas:
            "header  nav"
            "content content";
    }

    .indexlogo {
        padding: 3em;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;

    }

    .home {
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-start: 2;
    }

    .home div {
        /*        padding: 2em;*/
        margin: 20px;
    }

    .main-nav {
        margin-left: 2em;
        height: 3em;
    }


    .main-text {
        grid-template-columns: 1fr 3fr 1fr;
    }

}

@media (min-width: 700px) {
    .wrapper {

        max-width: 1000px;
        grid-template-rows: 0.1fr 0.9fr;
    }

}

.box {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-family: sans-serif;
    text-align: center;
    line-height: 1;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    max-width: 50%;
    max-height: 50%;
    padding: 20px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}
