@font-face {
    font-family: Montreal-Medium;
    src: url(/fonts/PPNeueMontreal-Medium.otf);
}
@font-face {
    font-family: Montreal-Book;
    src: url(/fonts/PPNeueMontreal-Book.otf);
}

body{
    cursor: none;
}

h1, h2, h3, p, a{
    font-family: Montreal-Medium;
}

.bigText{
    font-size: 60px;
    line-height: 110%;
}

.smallText{
    font-size: 14px;
    font-family: Montreal-Book;
    text-transform: none;
}

.courant{
    font-size: 14.5px;
    font-family: Montreal-Book;
    text-transform: none;
    line-height: 110%;
}

.bigDot{
    display: none;
    position: relative;
    transform:translateX(-20px);
    width: 16px;
    height: 16px;
    border-radius: 50pt;
    background-color: black;
    opacity: 0%;
    transition: all .2s ease;
}

.bigButtonText{
    font-size: 60px;
    text-align: center;
    transition: all .2s ease;   
}


.button, .bigButton{
    width: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bigButton{
    display: flex;
    align-items: center;
}
.dot{
    display: none;
    position: absolute;
    transform:translateX(-16px);
    width: 8px;
    height: 8px;
    border-radius: 50pt;
    background-color: black;
    opacity: 0%;
    transition: all .2s ease;
}
.buttonText{
    opacity: 30%;
    transition: all .2s ease;   
}

.buttonText:hover{
    opacity: 100%;
}
.bigButtonText:hover{
    opacity: 100%;
}
.button:hover .dot{
    display: block;
    opacity: 100%;
}
.button:hover .buttonText{
    opacity: 100%;
}

.active{
    opacity: 100%;
    display: block;
}

.bigButton:hover .bigDot{
    display: block;
    opacity: 100%;
}

.ball {
	background: hsla(0, 0%, 0%, 0.15);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
    display: none;
}

.smallBall {
	background: hsla(0, 0%, 0%, 0.15);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
    z-index: 16;
    pointer-events: none;
}