@keyframes hiden
{
	from
	{
	opacity: 0;
	}
	
	to
	{
	opacity: 1;
	}
}

:root
{
--color-white-rgba: rgba(255, 255, 255, 0.8);
--color-black-rgba: rgba(0, 0, 0, 0.8);
}

body
{
background-image: url('../images/fond.jpg');
background-repeat: no-repeat;
background-size: cover;
}

header
{
background-color: var(--color-white-rgba);
}

#occas
{
position: absolute;
left: 80vw;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
width: 15vw;
height: 90vh;
background-color: var(--color-white-rgba);
box-sizing: border-box;
margin-top: 5vh;
}

#affZone
{
max-height: 70vh;
overflow-y: hidden;
}

.occasImg
{
display: block;
max-width: 10vw;
max-height: 20vh;
box-sizing: border-box;
border: solid 1px var(--color-one);
animation: hiden 3s 1;
}

.occasText
{
display: flex;
justify-content: center;
align-items: center;
width: 10vw;
height: 5vh;
font-size: 0.8vw;
text-align: center;
color: var(--color-four);
}

.occasSub
{
display: block;
width: 10vw;
height: 15vh;
font-size: 1vw;
text-align: justify;
color: var(--color-one);
font-family: "Font2";
}

#sRubZone
{
display: flex;
flex-wrap: wrap;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
box-sizing: border-box;
padding: 2vh;
border: 1px solid var(--color-one);
background-color: var(--color-white-rgba);
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: var(--color-three) var(--color-five);
}

.sRubImg
{
float: left;
margin: 1vh;
width: 30%;
text-align: center;
}

.sRubTitle
{
display: block;
text-align: center;
color: var(--color-four);
font-family: "Font1";
font-size: 1.2vw;
}

.sRubText
{
display: block;
text-align: justify;
font-size: 1vw;
font-family: "Font2";
}

.sRubLink
{
display: block;
text-align: right;
width: 100%;
font-family: "Font2";
font-weight: bold;
font-size: 1vw;

}

#newsZone
{
display: flex;
flex-wrap: wrap;
height: 70vh;
width: 35vw;
box-sizing: border-box;
border: 1px solid var(--color-one);
background-color: var(--color-white-rgba);
}

.newsTitle
{
font-size: 1.2vw;
text-align: center;
font-family: "Font1";
}

.newsText
{
display: block;
box-sizing: border-box;
padding: 1vh;
font-size: 1.3vw;
text-align: justify;
font-family: "Font2";
}

.newsPict
{
float: left;
margin: 1vh;
max-width: 15vw;
max-height: 30vh;
text-align: center;
}

#artZone
{
display: flex;
flex-wrap: wrap;
width: 35vw;
min-height: 70vh;
max-height: 70vh;
overflow-y: auto;
justify-content: space-around;
align-items: space-around;
scrollbar-width: thin;
scrollbar-color: var(--color-one-rgba) var(--color-white-rgba);
}

.art
{
display: flex;
flex-direction: column;
flex-wrap: wrap;
width: 30vw;
height : 20vh;
box-sizing: border-box;
margin: 1vh;
border: 1px solid var(--color-one);
justify-content: center;
align-items: center;
background-color: var(--color-white-rgba);
}

.artImg
{
width: 30%;
max-height: 90%;
}

.artText
{
display: flex;
width: 60%;
height: 60%;
font-family: "Font2";
font-size: 1.2vw;
}

.artTitle
{
display: flex;
width: 60%;
height: 30%;
color: var(--color-four);
font-size: 0.8vw;
text-align: center;
}

