/*
FFFFFF = Blanc
272727 = Noir
*/

@font-face{
	font-family: 'Switzer-Bold';
	src: url('fonts/Switzer-Bold.otf') format(opentype);
}

@font-face{
	font-family: 'Switzer-Regular';
	src: url('fonts/Switzer-Regular.otf') format(opentype);
}

body{
    background-color: #FFFFFF;
    color: #272727;
    overflow-x: hidden;
}

::-webkit-scrollbar{
    display: none;
}

*{
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: crosshair;
}

::selection{
	background-color: #FFFFFF;
	color: #FFFFFF;
}

a{
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
	font-family: Switzer-Bold;
}

a:link{
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
	font-family: Switzer-Bold;
}

a:link2{
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
	font-family: Switzer-Bold;
}

a:visited{
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
	font-family: Switzer-Bold;
}

a:hover{
	color: #141414;
	outline: none;
	text-decoration: none;
	font-family: Switzer-Bold;
}

#conteneur_all{
	width: 100vw;
	height: 100vh;
	position: fixed;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.4vw;
}

#link{
	width: auto;
	height: auto;
	font-size: 2vw;
}

#link2{
	width: auto;
	height: auto;
	font-size: 2vw;
}

#conteneur_img{
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -1;
}

#conteneur_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#link{
    font-size: 2.5vw;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#link2{
    font-size: 2.5vw;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#link:hover {
    background-color: #FFFFFF;
    color: #272727;
}

#link2:hover {
    background-color: #FFFFFF;
    color: #272727;
}

#bottom{
	width: auto;
	height: auto;
	position: fixed;
	display: flex;
	justify-content: center;
	font-size: 0.7vw;
	color: #FFFFFF;
	left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 3vh;
    font-family: Switzer-Regular;
}







