.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


div {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
img {
    align-self: center;
    object-fit: cover;
    max-width: 80vh;
    width: auto;
    height: auto;
    border: 3px solid pink;
}

#butts {
    display: flex;
    justify-content: center;
    align-content: flex-end;
}

#left, #right {
    display: flex;
    padding: 15px;
    border: 3px solid black;
}

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid black;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
  }
  
  .cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: black;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
  }
  
  .hover {
    background-color: red;
    opacity: 0.5;
  }
  
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
  }

  