body{
    background: #000019;
    background: radial-gradient(circle, #00007D 20%, #000019 100%);
    color: #ffffff;
    text-align: center; 
    font-family: Oswald;
    /* font-family: Lacquer; */
}

h1{
    letter-spacing: 10px;
    text-transform: uppercase;
    text-decoration: underline;
}
span{
    display: block;
    height: 50px;
    width: auto;
    /* background-color: red; */
}

a
{
    color:#FF0000;
}

a:visited{
    color:#FF0000;
}

.gridcontainer-top{
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
    column-gap: 20px;
    justify-items: center;
    word-wrap: break-word;
    grid-template-columns: 20px 2fr 2fr 20px;
    grid-template-rows: 100%;
}



.gridcontainer-top div:first-of-type{
    grid-column: 2 / span 2;
    grid-row: 1;
    background: #004B9B;
    background: radial-gradient(circle, #0064E1 0%, #004B9B 70%);
    width: 100%;
    padding: 10px;
}

.item-headline{
    grid-column: 2 / span 2;
    grid-row: 1;
}
.item-headline :not(:first-child),
.item-headline a{
    background: none;
}

.gridcontainer-middle{
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
    grid-template-columns: 20px 1fr 1fr 20px;
    column-gap: 20px;
    row-gap: 20px;
    justify-items: center;
}
.gridcontainer-middle div:first-of-type{
    grid-column: 2 / span 2;
    grid-row: 1 / span 4;
    background: #004B9B;
    background: radial-gradient(circle, #0064E1 0%, #004B9B 70%);
    width: 100%;
    padding: 10px;
}


img{
    width: 90%;
    height: 95%;
    object-fit: cover;
    align-self: center;
    padding-right: 5%;
}

@media screen and (min-width:481px)
{
    .item-headline{
        grid-column: 2 / span 4;
    }

    .gridcontainer-top{
        grid-template-columns: repeat(6,1fr);
    }

    .gridcontainer-top div:first-of-type{
        grid-column: 2 / span 4;
    }

    .gridcontainer-middle{
        grid-template-columns: repeat(6,1fr);
    }

    .gridcontainer-middle div:first-of-type{
        grid-column: 2 / span 4;
    }
}

@media screen and (min-width:768px)
{
    .item-headline{
        grid-column: 2 / span 7;
    }

    .gridcontainer-top{
        grid-template-columns: repeat(9,1fr);
    }

    .gridcontainer-top div:first-of-type{
        grid-column: 2 / span 7;
    }

    .gridcontainer-middle{
        grid-template-columns: repeat(9,1fr);
    }

    .gridcontainer-middle div:first-of-type{
        grid-column: 2 / span 7;
    }
}
@media screen and (min-width:1025px)
{
    body{
        font-size: 125%;
    }

    .item-headline{
        grid-column: 3 / span 8;
    }

    .gridcontainer-top{
        grid-template-columns: repeat(12,1fr);
    }

    .gridcontainer-top div:first-of-type{
        grid-column: 3 / span 8;
    }

    .gridcontainer-middle{
        grid-template-columns: repeat(12,1fr);
    }

    .gridcontainer-middle div:first-of-type{
        grid-column: 3 / span 8;
    }
}