body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(black 10%, red 90%);
    overflow: hidden;
}

h1 {margin-top: 1vh;
    color: white;
    font-size: 10vh;
}

.pasxalka-link{
    position: fixed;
    top :60vh;
    right: 1vw;
}

p {
    margin-top: -7vh;
    color: white;
    font-size: 3vh;
}

img {
    height: 60%;
    position: absolute;
    top: 20%;
}

.img-li {
    position: static; 
    border-radius: 100%; 
    height: 5vh;
    width: 5vh;
    object-fit: cover;
}

ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 25vh;
    padding: 0;
    gap: 2vh;
}

a {
    color: white;
    text-decoration: none;
}

li {
    display: flex;
    align-items: center;
    position: relative;
    padding: 2vh;
    gap: 1vh;
    box-shadow: 0 0 1vh black;
    border: 0.2vh solid #00325e;
    background-color: #00325e;
    font-size: 3vh;
    transition: 0.25s ease-in-out;
}
.btn-gotovo{
    padding: 1vh;
    background-color: white;
    font-size: 3vh; 
    margin-top: 3vh;
    transition: 0.25s ease-in-out;
    box-shadow: 0 0 1vh black;
}

.btn-gotovo:hover{
        box-shadow: 0 1vh 2vh black;
    transform: translateY(-1vh);
}
.anim{
    animation: slide 1s forwards;
}

@keyframes slide {
    0%{
        left: -100%;
    }
    100%{
        left: 0%;
    }
}

.anim2{
    animation: clide 1s forwards;
}
@keyframes clide {
    0%{
        right: -100%;
    }
    100%{
        right: 0%;
    }
}


.static{
    position: static;
}



.sound-button {
    position: absolute;
    top: 1vh;
    right: 1vh;
    cursor: pointer;
}

.sound-button img {
    position: static;
    height: 10vh;
    width: 10vh;
    max-height: 100px;
    max-width: 100px;
}

.sound-button img:nth-child(2) {
    display: none;
}

.sound-button:has(input:checked) img:nth-child(1) {
    display: none;
}

.sound-button:has(input:checked) img:nth-child(2) {
    display: flex;
}
.phone {
    display: none;
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 40px;
    top: 10px;
    border: none;
    left: auto;
    right: -50px;
}

.phone img {
    width: 100%;
    height: 100%;
    position: static;
    border-radius: 40px;
}

.form-label {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 1vh;
    font-size: 3vh; 
}
.form-label.row {
    flex-direction: row;
    justify-content: space-between  ;
    cursor: pointer;
    user-select: none;
}

.form-label.row::after {
    content: "";
    display: block;
    width: 3.3vh;
    height: 3.3vh;
    border: 1px solid white;
    background-size: 100% 100%;
    background-position: center;
}
.form-label.row:nth-child(2)::after {
    background-image: url('img/мужик.webp');
}
.form-label.row:nth-child(3)::after {
    background-image: url('img/женщина.jpg');    
}
.form-label.row:nth-child(4)::after {
    background-image: url('img/шкибиди.jpg');    
}
.form-label.row:nth-child(5)::after {
    background-image: url('img/ламинат.jpg');    
}
.form-label.row:nth-child(6)::after {
    background-image: url('img/плитка.jpg');    
}

.form-label.row:has(input:checked)::after {
    background-image: url('img/галочка.png'); 
}

.form-label input {
    font-size: 3vh;
    padding: 1vh;
    outline: none;
}

.form-flex {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

@media (max-width: 550px) {
    h1 {
        margin-top: 2vh;
        font-size: 5vh;
    }
    
    p {
        margin-top: -2vh;
        font-size: 2vh;
    }    

    img {
        height: 24%;
        top: 14%;
    }
    ul {
        top: 40vh;
    }

    .phone{
        display: block;
    }

    .sound-button {
        display: none;
    }

} 

@media (hover: hover) {
    li:hover {
        background-color: #a60000;
        box-shadow: 0 0 5vh black;
        transform: scale(1.2);
    }
}