@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@100;200;300;400;500;600;700;800;900&display=swap');


html, body {
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: #eae3d1;
    font-family: 'MuseoModerno', cursive;
    color: rgb(19, 19, 19);
    cursor: none;

}

h1, h2, h3, h4, h5{
    font-weight: 200;
}


header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 50px;
}

#gameFrames{
    display: flex;
    flex-direction: column;
   padding:  20px;
    align-items: center;
    border-bottom:1px solid black;
    border-top: 1px solid black;
}

#gameFrames button{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    cursor: none;
}

#gameFrames button:last-child{
  border: 2px solid black;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 500ms ease-in-out;
  color:white;
}

#gameFrames button:last-child:hover{
    background-color:#282b2d;
    transition: 500ms ease-in-out;
    color: rgb(167, 167, 167);
}

.cursor{
	position: absolute;
	background: #d75c3a;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	transition: 0.5s cubic-bezier(0.75,-1.27,0.3,2.33) transform, 0.2s cubic-bezier(0.75,-1.27,0.3,2.33) opacity;
	user-select: none;
	pointer-events: none;
	transform: scale(0.8);
	  z-index: 200;
}

.cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-image: url("http://mirkozeppieri.emanuelepapale.com/wp-content/uploads/2018/07/project-hover-cursor.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
    transform: scale(12);
}

.cursor.active::before {
    opacity: 1;
}

.cursor-follower {
    position: absolute;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 200;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: translate(4px, 4px);
    border: 1px solid black;
}

.cursor-follower.active {
    opacity: 0.3;
    transform: scale(0);
}

.nextRound {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.nextRoundButton{
    background-color: black;
    color:white;
    border: none;
    border-radius: 5px;
    transition: 500ms ease-in-out;
}

.nextRoundButton:hover{
    background-color:#282b2d;
    transition: 500ms ease-in-out;
    color: rgb(215, 215, 215);
}

.rules{
    padding: 90px;
    display: flex;
    justify-content:space-evenly;
}

#rulesFrame{
    margin-top: 80px;
}

