body {
    margin: 0%;
    background-color: azure;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

p {
    text-align: left;
    padding: 5%;
    padding-top: 0%;
}

.impressum {
    margin: 5%;
}

.games {
    background-image: url("./img/background_1.jpg");
    background-position: center;
    background-attachment: fixed;
    
}

.games div {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 4%;
}

.games div h1 {
    margin-bottom: 3%;
}

.games div img {
    width: 300px;
    height: auto;
    border-radius: 32px;
    margin: 1%;
    border: 5px solid rgba(255, 68, 0, 0);
    transition: all ease 0.3s;
}

.games div a {
    text-decoration: none;
}

.games div a img:hover {
    border: 5px solid orangered ;
    cursor: pointer;
}

.back {
    position: absolute;
    left: 70px;
    top: 100px;
    background-color: black;
    color: orangered;
    border: none;
    font-size: 20px;
    padding: 15px;
    padding-left: 45px;
    padding-right: 45px;
    transition: all ease 0.3s;
}

.back:hover {
    background-color: orangered;
    color: azure;
    cursor: pointer;
}

@media (max-width:750px) {
    .games div a img {
        width: 70px;
        border-radius: 14px;
    }

    .games div {
        padding-top: 10%;
        padding-bottom: 80%;
        border: 1px;
    }

    .games div a img {
        border: 2px solid rgba(255, 68, 0, 0);
    }

    .games div a img:hover {
        border: 2px solid orangered;
    }

    .games div h1 {
        margin-bottom: 20%;
        font-size: 35px;
    }

    .back {
        left: 4px;
        top: 13px;
        font-size: 13px;
    }

    .impressum {
        width: 300px;
        height: auto;
    }
}
