@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&display=swap');
body {
 background-color : black;
font-family: 'Cinzel', serif;
 font-size: 20px;
 cursor: url(https://cdn.discordapp.com/attachments/803304155636170774/870346036349141043/40236.png), default !important;
} 
a {
	color: red;
	text-decoration: underline;
} 
a:hover {
	color: white;
} 
.container {
	text-align: center;
	color: white;
	display: inline-block;
    background: black;
	overflow-y: scroll;
	width: 390px;
	height: 100px;
	position: absolute;
	color: white;
} 
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #A70000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7B0000;
}
@keyframes heartfade {
  0% {
    opacity : 1;
  }
  50% {
    opacity : 0;
  }
}
.heart {
  z-index : 999;
  animation : heartfade 6s linear;
  position : absolute; 
}
.heart:before,
.heart:after {
  content : "";
  background-color : #fc2a62;
  position : absolute;
  height : 30px;
  width : 45px;
  border-radius : 15px 0px 0px 15px;
}

.heart:before {
  transform : rotate(45deg);
}

.heart:after {
  left : 10.5px;
  transform : rotate(135deg);
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
[class*="container"] {
  width: 100%;
  height: 100%;
  left: 1%;
} 
