@font-face {
    font-family: 'Avara Bold';
    src: url('../fonts/Avara-Bold.woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text, .text2 {
    cursor: pointer;
}

.col:hover .text {
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}

.col:hover .text2 {
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
    background: linear-gradient(to right, 
        #b5b4b4 50%,       /* linke Hälfte */
        #ffffff 50%      /* rechte Hälfte */
    );
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
    width: 100%;
    padding: 8px;
}

.col {
    grid-column: span 6;
    padding: 40px;

    aspect-ratio: 1 / 1;
    
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    cursor: pointer;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-family: 'Avara Bold';
    color: #b5b4b4;
    font-size: 3vw;
}

.text:hover {
    font-style: italic;
    color: #b5b4b4;
}

.text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-family: 'Avara Bold';
    color: #ffffff;
    font-size: 3vw;
}

.text2:hover {
    font-style: italic;
    color: #ffffff;
}

.text_footer {
    font-family: 'Avara Bold';
    color: #ffffff;
    font-size: 4vw;
    text-decoration: none;
}

.text_footer:hover {
    font-style: italic;
    color: #ffffff;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    text-align: left;
    padding-left: 30px;
}


@media (max-width: 768px) {

    .col {
        grid-column: span 12;
        aspect-ratio: auto;
        height: calc(50vh - 16px);
        padding: 10px;
        overflow: hidden;
    }

    svg {
        width: 100%;
        height: 100%;
        max-width: 75%;
        max-height: 100%;
        display: block;
    }

    circle {
        stroke-width: 6;
        stroke-dasharray: 0 10;
        r: 20;
    }

    .text_footer {
    font-family: 'Avara Bold';
    color: #b5b4b4;
    font-size: 30px;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}

.text_footer:hover {
    font-style: italic;
    color: #b5b4b4;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}

 .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: left;
        padding-bottom: 20px;
        transform: none;
    }

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-family: 'Avara Bold';
    color: #b5b4b4;
    font-size: 26px;
}

.text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-family: 'Avara Bold';
    color: #ffffff;
    font-size: 26px;
}

    .grid-container {
        gap: 8px;
        padding: 8px;
    }

    body {
    overflow: hidden;
    align-items: stretch;
    background: linear-gradient(to bottom,
        #b5b4b4 50%,
        #ffffff 50%
    );
}

}