body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: none;
}

.cursor {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 0;
    opacity: 0.7;
    border-radius: 100%;
    transition: width 0.1s, height 0.1s;
}


.cursor--active {
    width: 25px;
    height: 25px;
    opacity: 0.7
}

.heart-symbol {
    color: white;
    font-family: Arial;
  }

  .footer {
    position: fixed;
    font-family: Arial;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }
  
  .made-with {
    display: inline-block;
    font-family: Arial;
    margin-top: 5px;
  }

  .made-with a {
    color: white;
  font-weight: bold;
  font-family: Arial;
  }

.cursor--hide {
    opacity: 0;
}

.cursor--hover {
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

#logo {
    z-index: 9999;
    position: fixed;
    top: 15px;
    left: 15px;
    width: 50px;
    padding: 15px;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}