*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Roboto;
    src: url("../fonts/Roboto.ttf");
}

body {
    font-family: Roboto, sans-serif;
}

#vanta {
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
}

.buttons {
    text-align: center;
    margin: 84px;
}

.buttons button {
    width: 174px;
    height: 58px;
    margin-right: 31px;
    background: #F2CBDA;
    border: 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    color: black;
    transition: background-color .5s;
    box-shadow: rgb(128, 75, 162) 0px 2px 30px 0px
}

.buttons button:hover {
    cursor: pointer;
    color: white;
    background: #EE8CB3;
}

img {
    max-height: 300px;
}

.slick-track {
    display: flex;
}

.slick-list {
    overflow: hidden;
}

.slider {
    position: relative;
    padding: 0px 50px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    z-index: 10;
    font-size: 0;
    width: 50px;
    height: 100px;
}

.slick-arrow.slick-disabled {
    opacity: 0.2;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.slick-dots li {
    list-style: none;
    margin: 0 20px;
}

.slick-dots button {
    font-size: 0;
    width: 15px;
    height: 15px;
    background-color: #EE8CB3;
    border-radius: 50%;
    border: 0;
}

.slick-dots li.slick-active button {
    background-color: transparent;
    border: 1px solid black;
}

.slick-arrow.slick-prev {
    left: 30px;
    background: url('../images/arrow-left.png') 0 0 / 100% no-repeat;
    border: 0;
}

.slick-arrow.slick-next {
    right: 30px;
    background: url('../images/arrow-right.png') 0 0 / 100% no-repeat;
    border: 0;
}

.slider__item {
    text-align: center;
}

img[tabindex="0"] {
    cursor: zoom-in;
}

img[tabindex="0"]:focus {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    max-width: 99%;
    max-height: 99%;
    margin: auto;
    box-shadow: 0 0 20px #000, 0 0 0 1000px rgba(210, 210, 210, .4);
}

img[tabindex="0"]:focus,
img[tabindex="0"]:focus ~ * {
    pointer-events: none;
    cursor: zoom-out;
}