* { margin: 0px; 
    padding: 0px; 
    font-size: 22px;
    box-sizing: border-box;
}

body{ background-color: lightseagreen; }

/* Блок с ссылками для загрузки кода ***********************************/
.download{
    position: fixed;   
    bottom: 0;
    right: 0;
    margin-right: 10em;
    margin-bottom: 10em;
}

.download a{
    color: blue;
}
/* Блок с ссылками для загрузки кода ***********************************/


/* ОСНОВНОЙ БЛОК *******************************************************/
h1{
    font-size: 4em;
    font-style: italic;
    text-shadow: 20px 20px 20px rgba(255,255,255,.6);
    text-align: center;
    margin-top: 2%;
    position: relative;
    z-index: 2;
}

.my_images{                                                                             /* главная обёртка */
    position: relative;                                                                 /* для позиционирования фотожаб от этого контейнера */
    width: 1211px;
    margin: 3% auto 0 auto;
}

.my_images div{                                                                         
    display: inline-block;
    position: relative;                                                                 /* чтобы дочерний элемент с "position: absolute" не вышел за пределы родителя*/
    z-index: 2;
    transition: 2s all ease;
}

.my_images div:hover{
    transform: scale(1.5);
    z-index: 10;
    box-shadow: 0 0 75px 75px rgba(255,255,255,.6);
}

.my_images p{                                                                           /* скрытые надписи для фото */
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    color: white;
    font-size: 1.2em;
    background-color: lightskyblue;
    opacity: 0.85;
    display: none;
}

.my_images div:hover > p{                                                               /* показывает скрытые надписи для фото */
    display: block;
}

/* ОСНОВНОЙ БЛОК *******************************************************/

/* ФОТОЖАБЫ К ОСНОВНОМУ БЛОКУ*******************************************/

#first_frog{
    position: absolute;
    top: 100px;
    z-index: 1;
    transform: rotate(15deg) scale(2);
    transition: 2s all ease;
}
#first_frog:hover{
    transform: rotate(15deg) scale(2.5);
    z-index: 10;
}

#second_frog{
    position: absolute;
    top: -150px;
    left: -150px;
    z-index: 1;
    transform: rotate(-15deg) scale(2);
    transition: 2s all ease;
}
#second_frog:hover{
    transform: rotate(-15deg) scale(2.5);
    z-index: 2;
}

/* ФОТОЖАБЫ К ОСНОВНОМУ БЛОКУ*******************************************/