.body {
    position: relative;
}

.conteiner {
    max-width: 1230px;
    min-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.kitty {
    position: relative;
    max-width: 500px;
}

img {
    width: 100%;
}


.nose {
    position: absolute;
    right: 71%;
    top: 52%;
    background-color: transparent;
    font-weight: 700;
    font-size: 1em;
}

.nose:hover {
    color: rgb(105, 5, 92);
}

.modal {
    width: 100%;
    height: 100%;
    min-width: 300px;
    background-color: rgba(0, 0, 0, 0.950);
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.modal_open {
    visibility: visible;
}

.modal-window {
    padding: 10px;
    height: 25vh;
    width: 25vw;
    min-width: 300px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: auto;
}

.close {
    align-self: self-end;
    font-weight: 700;
}
