/*@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');*/

* {
  cursor: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body, html {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

/*section {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  height: 100vh;*/
/*  flex-direction: column;*/
/*}*/

/*h1 {*/
/*  font-family: montserrat;*/
/*  font-size: 40px;*/
/*  cursor: none;*/
/*}*/

/*a {*/
/*  font-family: Montserrat;*/
/*  position: relative;*/
/*  text-decoration: none;*/
/*}*/

/*a:after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  display: block;*/
/*  margin-top: 0px;*/
/*  left: 0%;*/
/*  background: black;*/
/*  transition: width .3s ease;*/
/*}*/

/*a:hover:after{*/
/*  width: 100%;*/
/*  left: 0%;*/
/*  background: black;*/
/*}*/

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #FFAAAA;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 2;
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #FFAAAA;
  /*opacity: .5;*/
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 2;
}

.hover {
  background-color: red;
  opacity: 0.5;
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: .5;
}