@media all and (min-width: 1440px)
/* Desktop */
    {

    .header-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 0;
        padding-left: 0%;
        padding-right: 0%;
        text-align: center;
    }

    .logo {
        width: 200px;
        height: 200px;
        margin: 0;
        padding: 0;
    }

    img {
        width: 150%;
    }

    .sub-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 20;
        text-align: center;

        padding-left: 0%;
        padding-right: 0%;
    }

    .hoverlogo {
        display: none;
    }

    .head-small {
        display: none;
    }
}

@media all and (min-width: 1000px) and (max-width: 1439px)
/* tablet landscape */
    {

    .header-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 1;
        text-align: center;
    }

    .sub-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 20;
        text-align: center;
        padding-left: 0%;
        padding-right: 0%;
    }

    .hoverlogo {
        display: none;
    }

    .logo {
        grid-row-start: 4;
        grid-row-end: 36;
        width: 150px;
        height: 150px;
        align-self: end;
        grid-row-start: 3;
    }

    .head-big {
        display: none;
    }
}

@media all and (min-width: 738px) and (max-width: 1000px)
/* tablet */
    {

    .header-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 2;
        text-align: center;
    }

    .sub-title {
        grid-column-start: 1;
        grid-column-end: 12;
        grid-row-start: 25;
        text-align: center;
        padding-left: 0;
        padding-right: 0%;
    }

    .hoverlogo {
        display: none;
    }

    .logo {
        grid-row-start: 4;
        grid-row-end: 35;
        width: 125px;
        height: 125px;
        align-self: center;
        justify-self: center;
        padding-right: 10px;
    }

    .head-big {
        display: none;
    }
}

@media all and (min-width: 50px) and (max-width: 738px)
/* phone */
    {

    .hoverlogo {
        position: -webkit-sticky;
        /* Safari */
        position: sticky;
        top: 0;
        position: fixed;
        left: 0;
        margin-left: 2%;
        padding-top: 0px;
        padding-left: 5px;
        padding-right: 25px;
        padding-bottom: 0px;
        width: 89%;

        img {
            left: 0;
            height: 100px;
            width: 100px;
        }

        background-color: var(--GreyBlue);
        border-bottom-right-radius: 50px;
        opacity: 0.9;
        z-index: 1;
        box-shadow: 8.0px 16.0px 16.0px hsl(0deg 0% 0% / 0.25);
    }

    .dytext {
        position: absolute;
        right: 22px;
        top: 15px;
        text-align: right;
        color: var(--Stone);
        font-size: 16px;
    }

    .hoverlogo:active {
        box-shadow: 0.8px 1.6px 1.6px hsl(0deg 0% 0% / 0.48);

    }

    .header-title {
        display: none;
    }

    .sub-title.head-small {
        display: none;
    }

    .sub-title {
        grid-column-start: 1;
        grid-column-end: 13;
        grid-row-start: 24;
        text-align: center;
        padding: 0%;
        padding-top: 3%;
        margin: 0;
    }

    .logo {
        display: none;
    }
}

header {
    border-radius: 21px;
    background-color: var(--Stone);
    padding: 2%;
    margin-bottom: 3%;
}

.logo {
    grid-column-start: 12;
    grid-column-end: 13;

    img {
        width: 100%;
        height: 100%;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(40, 5px);
    justify-content: center;
    /* centers items horizontally */
    align-content: center;
}