.block1 {
    width: 70%;
    height: 100%;
    margin: auto;
}

.verh {
    height: 60px;
    width: 100%;
    top: 0px;
    z-index: 5;
}

.topbutton {
    width:150px;
    height: 80px;
    line-height: 80px;
    border:2px solid black;
    background:#f7f7f7;
    text-align:center;
    padding:10px;
    position:fixed;
    bottom:50px;
    right:50px;
    cursor:pointer;
    color:black;
    font-family:verdana;
    font-size:25px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px black;
    z-index: 2;
}
    
.topbutton:hover {
    background-color: rgb(133, 133, 133);
    cursor: pointer;
}


a {
    color: black;
    text-decoration: none;
}

.block2 a {
    color: black;
    text-shadow: 7px 9px 5px gray;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.block2 {
    font-size: 40px;
    font-weight: 1000;
    text-align: center;
    padding-top: 8px;
    font-family: 'Courier New', Courier, monospace;
}

.block3 {
    margin-top: 15px;
    width: 70%;
    height: 25vw;
    background-image: url(samara2.jpg);
    background-size: cover;
    margin: auto;
    border-radius: 20px;
    background-position: center;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.bloki {
    width: 100%;
    position: relative;
    top: -60px;
    display: flex;
    justify-content: space-around;
}

.bloki2 {
    margin-top: 100px;
}

.sait {
    width: 18vw;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 5px gray;

}

.sait2 {
    background-color: white;
    border-radius: 20px;
}

.sait3 {
    background-color: white;
    border-radius: 20px;
}

.b1 {
    width: 180px;
    height: 100px;
    position: relative;
    top: -40px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
}

.b2 {
    font-size: 25px;
    text-align: center;
    margin-top: -20px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
}

.b3 {
    font-size: 20px;
    text-align: center;
    margin-top: 13px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.b4 {
    height: 40px;
    width: 140px;
    background-color: white;
    border-radius: 20px;
    border: 2px solid black;
    margin: 15px auto;
    text-align: center;
    line-height: 40px;
    position: relative;
    bottom: 10px;
}

.b4:hover {
    background-color: rgb(133, 133, 133);
    cursor: pointer;
}

.topbutton3 {
    display: none;
}

.textvkoce {
    width: 100%;
    text-align: center;
    margin-top: -20px;
    height: 50px;
}


.textvkoce a {
    color: black;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
}

.myElement {
    transition: all 0.4s;
}

.myElement:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 1000px) {
    .textvkoce a {
        font-size: 5vw;
    }

    .topbutton3 {
        width:10vw;
        height: 10vw;
        padding:10px;
        position:fixed; 
        bottom:30px;
        right:5vw;
        cursor:pointer;
        text-decoration: none;
        display: inline;
        transform: rotate(90deg);
        z-index: 2;
    }

    
    path {
        fill: black;
    }
    
    .block1 {
        width: 100%;
        flex-wrap: wrap;
    }
    .sait {
        width:80vw;
        margin-top: 100px;
        
    }

    .b1 {
        height: 20vw;
        width: 35vw;
    }

    .b2 {
        font-size: 6vw;
    }

    .b3 {
        font-size: 5vw;
    }

    .b4 {
        font-size: 20px;
    }

    .bloki {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .bloki2 {
        margin-top: 0px;
    }

    .block2 {
        font-size: 4vw;
    }

    .block3 {
        margin-top: 0px;
        height: 45vw;
        width: 100vw;
    }

    .topbutton {
        display: none;
    }

    .myElement:hover {
        transform: scale(1);
    }
    
    @keyframes breathe {
        0% { 
          transform: scale(1); /* начальный размер элемента */
        }
        50% { 
          transform: scale(1.05); /* увеличенный размер элемента */
        }
        100% { 
          transform: scale(1); /* возвращаемся к исходному размеру */
        }
      }
      
      .sait {
        animation: breathe 3s infinite; /* запускаем анимацию дыхания на протяжении 2 секунд */
      }
}