:root {
    --blue: #5564aa;
    --hoverTransparent: #a0a0a080;
    --darkGray: #a0a0a0;
    --orange: #efd74f;
    --background: white;
    --lightGray: #f0f0f0;
}

*{
    font-family: 'Calibri', sans-serif;
    margin: 0;
    padding: 0;
}

body{

    min-height: 100dvh;

    display: flex;
    flex-direction: column;

    background-image: url("/media/pictures/testBackground2.png");
    background-position: center;
    background-repeat: repeat;

    overflow-x: hidden;
}
main{
    overflow-x: hidden;
}

.radialBackground {
    background: radial-gradient(circle at center right, #7a83ae 0%, #a8acc3 69%, #d7dae6 70%, #a8acc3 71%, #d7dae6 100%);
}
.blueBackground {
    background: var(--blue);
}
.grayBackground {
    background: var(--darkGray);
}
.lightGrayBackground {
    background: var(--lightGray);
}

a{
    color: var(--blue);
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

.inline{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.inline > *{
    margin-left: 10px;
}

.inline *:first-child{
    margin-left: 0; !important;
}

.field{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px 10px rgba(0,0,0,0.3);
}

h1,h2,h3,h4,h5,h6{
    color: var(--blue);
    text-align: start;
}

.left{
    text-align: left; !important;
}

ul{
    list-style: outside "❱ ";
    padding-left: 20px;
    margin: 10px;
}



li::marker{
    color: var(--blue);
    margin-right: 5px;
}

@media screen and (max-width: 600px) {
    h1{
        font-size: 2em;
        margin-bottom: 20px;
    }
    h2{
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    h3{
        font-size: 1.0em;
        margin-bottom: 5px;
    }

    h6{
        font-size: 3em;
    }

    p, a, .productAttribute li{
        font-size: 1.1em;
    }

}

@media screen and (min-width: 600px) and (max-width: 2500px) {
    h1{
        font-size: 3em;
        margin-bottom: 15px;
    }

    h2{
        font-size: 2em;
        margin-bottom: 15px;
    }

    h3{
        font-size: 1.5em;
        margin-bottom: 7px;
    }

    h6{
        font-size: 4em;
        margin-bottom: 15px;
    }

    p, a, .productAttribute li{
        font-size: 1.4em;
    }
}

@media screen and (min-width: 2500px) {
    h1{
        font-size: 3.5em;
        margin-bottom: 20px;
    }

    h2{
        font-size: 2em;
        margin-bottom: 20px;
    }

    h3{
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    h6{
        font-size: 6em;
        margin-bottom: 20px;
    }

    p, a, .productAttribute li{
        font-size: 1.6em;
    }
}

p{
    color: #454545;
}

.clickable{
    transition: 0.2s;

    transform: scale(1);
    opacity: 1;
}

.clickable:hover{
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    transform: scale(1.05);
    opacity: 0.9;

}

.clickable h1,h2,h3,h4,h5,h6{
    transition: 0.2s;
}

.clickable:hover h1,h2,h3,h4,h5,h6{
    transition: 0.2s;
}

.grid{
    position: relative;

    width: 60dvw;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: center;

    gap: 4dvw;
}


@media screen and (max-width: 1050px) {
    .grid{
        grid-template-columns: 90dvw;
    }
}

@media screen and (min-width: 1050px) {
    .grid{
        grid-template-columns: 40dvw 40dvw;
    }

    .specialSpan{
        grid-column: span 2;
        width: 50% !important;
        justify-self: center;
    }

    .span{
        grid-column: 1 / span 2;
        width: 100% !important;
    }
}