body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://cdn.pixabay.com/photo/2017/06/08/08/56/common-toad-2382962_1280.jpg'); /* Картинка с Pixabay */
    background-size: cover;  /* Фоновое изображение будет покрывать весь экран */
    background-position: center;  /* Центрируем фоновое изображение */
    background-attachment: fixed;  /* Картинка будет оставаться фиксированной при прокрутке */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Занимает всю высоту экрана */
}

.wrapper {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);  /* Полупрозрачный фон, чтобы текст был читаемым */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);  /* Лёгкая тень для выделения */
}

h1 {
    font-size: 3rem;
    color: #388e3c;
}

p {
    font-size: 1.5rem;
    color: #2e7d32;
    margin: 20px 0;
}

.frog-container {
    position: relative;
    margin-top: 30px;
}

.frog {
    background-image: url('https://cdn.pixabay.com/photo/2021/05/09/09/15/toad-6240303_1280.jpg'); /* Замени на реальное изображение жабы */
    background-size: cover;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: frogHop 3s infinite ease-in-out;
    margin: 0 auto;
}

@keyframes frogHop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

.frog-jump {
    background-color: #388e3c;
    padding: 20px;
    color: #fff;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    width: 200px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.frog-jump:hover {
    transform: scale(1.1);
}

.frog-jump:active {
    transform: scale(1.05);
}
