body {
    margin: 0;
}

a {
    text-decoration: none;
    color: #551A8B;
}

button {
    cursor: pointer;
}

#main-body {
    width: 100%;
    height: 100vh;
    background-color: #f19cbb;
    overflow: hidden;
}

#main-page-container {
    display: flex;
    justify-content: center; /* Выравнивание по горизонтали */
    align-items: center; /* Выравнивание по вертикали, если необходимо */
    background-color: #f19cbb;
    height: 100vh;
}

#sections {
    width: 90%;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: -13vh;
    /*margin-bottom: 7%;*/
}

#block-1,
#block-2,
#block-3,
#block-4,
#block-5,
#block-6,
#block-7,
#block-8 {
    width: 45%;
    margin: 40px 30px 0;
    z-index: 5;
    font-family: 'eurostile_roman', sans-serif;
    color: black;
    font-size: 3vw;
    background-color: #ffdde7;
    border: 7px solid white;
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}

#block-1:hover,
#block-2:hover,
#block-3:hover,
#block-4:hover,
#block-5:hover,
#block-6:hover,
#block-7:hover,
#block-8:hover {
    cursor: pointer;
    scale: 1.02;
}

#version {
    position: fixed;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    font-size: 1.2vw;
    font-family: 'eurostile_roman', sans-serif;
}

.grey {
    background-color: grey !important;
}

#icon-container {
    position: fixed;
    display: flex;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}
/*
#donate img {
    height: 4vw;
    padding: 15px;
    margin-bottom: -24vh;
}*/

#donate img,
#tg img,
#twitch img,
#feedback img {
    height: 4.2vw;
    border-radius: 0%;
    padding: 15px;
}

#donate img {
    border-radius: 0;
}

#donate img:hover,
#tg img:hover,
#twitch img:hover,
#feedback img:hover {
    cursor: pointer;
    scale: 1.1;
}