body {
    background: linear-gradient(to right, #0099ff , #77ccff, #77ccff, #0099ff);
    background-image: url("seagulls_bg.png");
    background-attachment: fixed;
    background-size: 100%;
    background-repeat: no-repeat;
	color:#000000;
}

a:hover {
	opacity: 0.5;
}

h1 {
    font-size: 3em;
}

.headers {
    text-align: center;
    text-shadow: 0 0 7px whitesmoke;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    opacity: 0.3;
}

.grid-container-1 {
	display: grid;
	grid-template-columns: auto;
	background: linear-gradient(to right, rgba(23, 62, 190, 0.4), rgba(51, 100, 153, 0.4), rgba(51, 100, 153, 0.4), rgba(23, 62, 190, 0.4));
    /*background: linear-gradient(to right, #0000ff , #0044ff, #0044ff, #0000ff); */
	border-radius: 15px;
	padding: 20px;
    /*width: 60%;*/
    max-width: 1000px;
    margin: auto;
}

.grid-item-1 {
	background-color: rgba(0, 100, 200, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	padding: 20px;
	margin: 5px;
	font-size: 30px;
	text-align: center;
	color: white;
}

.pleft, .pright {
    position: relative;
    width: 35%;
    text-align: center;
    /*background-color: red;*/
    z-index: 100;
}

.tleft, .tright {
    position: relative;
    width: 65%;
    height: 100%;
    text-align: center;
    margin: auto;
    /* background-color: green;
    margin: 20px; 
    z-index: 200; */
}

.pleft, .tleft {
    float: left;
}

.pright, .tright {
    float: right;
}

p {
    font-family: Georgia, 'Georgia', Times, serif;
    z-index: 50;
    margin-left: 20px;
    margin-right: 20px;
}

.en {
    font-size: xx-large;
}

.de, .nl, .hu {
    font-size: medium;
}

.fisch {
    max-width: 300px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.fisch:hover {
    opacity: 1;
    transform: scale(2.2);
    transition: 0.5s;
    z-index: 300;
}

.grid-container-2 {
    width: 60%;
    margin: auto;
    display: grid;
	grid-template-columns: auto auto auto auto auto auto auto auto;
}

.grid-item-2 {
    margin: auto;
}

.flag {
    height: 50px;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}

@media (max-width:1000px)  {
    body {
        background: linear-gradient(to right, #0099ff , #77ccff, #77ccff, #0099ff);
        background-image: url("seagulls_bg_narrow.png");
        background-attachment: scroll;
        background-size: 100%;
        background-repeat: repeat-y;
        color:#000000;
    }

    .fisch {
        max-width: 200px;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

    .fisch:hover {
        z-index: 1001;
    }

    #fischpic_l:hover {
        opacity: 1;
        transform: scale(3.5) translate(33%);
        transition: 0.5s;
    }

    #fischpic_r:hover {
        opacity: 1;
        transform: scale(3.5) translate(-33%);
        transition: 0.5s;
    }

}