@font-face {
    font-family: "Vezitsa";
    src: url("./Vezitsa.ttf");
  }

html {
    scroll-behavior: smooth;
}

body {
    font-family: Vezitsa, sans-serif;
}

#dragParent {
    background: url('./background-svechok.jpg') no-repeat center center;
    width: 100%;
    max-width: 1320px;
    height: 640px;
    margin: 20px auto;
    position: relative;
}

#dragChild {
    position: absolute;
    will-change: transform;
    width: 43px;
    height: 321px;
    transform: translate3d(55px, 100px, 0px);
    filter: drop-shadow(1px 1px 0 yellow) drop-shadow(-1px -1px 0 yellow);
    touch-action: none;
    user-select: none;
}

#dragChild:hover {
    cursor: grab;
}


.modalDragClass {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modalDragContentClass {
    font-family: Vezitsa, sans-serif;
    background-color: #fefefe;
    margin: 15% auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 12px;
}

.modalDragContentTitleClass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.modalDragContentTitleClass h5 {
    font-size: 20px;
    margin: 0;
}

.modalDragContentBodyClass {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.modalDragContentBodyClass h3 {
    text-align: center;
    margin: 0;
}

.modalDragContentBodyClass a {
    background-color: #d4480d;
    height: 46px;
    padding-left: 54px;
    padding-right: 54px;
    outline: 0;
    border: 0;
    margin: 20px 0 0;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.modalDragContentBodyClass a:visited {
    color: #ffffff;
}

.modalDragCloseClass {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modalDragCloseClass:hover,
.modalDragCloseClass:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.list {
    display: flex;
    flex-wrap: wrap;
}

.iksweb {
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 3px;
    color: #228b22;
    border-radius: 0px;
    border: 2px solid #228b22;
}

.iksweb:hover {
    background: #ffd800;
    color: #ffffff;
    border: 2px solid #ffd800;
    transition: all 0.2s ease;
}

.content {
    margin: 0 auto;
    max-width: 700px;
}