body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
    /*
    background: linear-gradient(45deg, #679b41, #0e528c);
    */
    /*background: conic-gradient(*/
            /*from 0deg,*/
            /*#679b41,*/
            /*#0e528c,*/
            /*#679b41,*/
            /*#0e528c,*/
            /*#679b41*/
    /*);*/
    /*animation: spin 4s linear infinite;*/
}

body::before {
    content: '';
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
            45deg,
            #679b41,
            #0e528c,
            #679b41,
            #0e528c
    );
    animation: spin 16s linear infinite;
    z-index: -1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*
    background-image: url('/Images/p63_1.jpg');
    */
}

section img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* вся картинка внутри контейнера */
    object-position: center;
}

/*@media (min-width: 768px) {*/
    /*section {*/
        /*background-image: url('/Images/p63_1.jpg');*/
    /*}*/
/*}*/

/*@media (max-width: 767px) {*/
    /*section {*/
        /*background-image: url('/Images/p63_1.jpg');*/
    /*}*/
/*}*/

button {
    position: fixed;
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 75px;
    color: #fff;
    background: linear-gradient(45deg, #0f4c81, #1e6b3b);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    animation: shadowPulse 2s infinite alternate;
}

button span {
    font-size: 32px;
    color: #c3ff15;
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 15px rgba(0, 100, 255, 0.8), 0 0 5px rgba(0, 100, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 255, 100, 0.9), 0 0 10px rgba(0, 255, 100, 0.6);
    }
}

button:hover {
    transform: scale(1.05);
    animation: shadowPulse 0.5s infinite alternate;
}

.img {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 11px 11px 20px 0 #152342;;
    margin: auto;
    border-radius: 20px;
}

@media (max-width: 767px) {
    button {
        line-height: 35px;
    }
}
