/* Site Kernodet */
/* index CSS */
/* 30/03/2023 */

* {
  box-sizing: border-box;
}


@font-face {
	font-family: 'Barlow';
	src: url("/fonts/Barlow/Barlow-Black.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Black.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-BlackItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Bold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-BoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraBold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraBoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraLight.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraLightItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Italic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Light.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-LightItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Medium.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-MediumItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-SemiBold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-SemiBoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Thin.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ThinItalic.ttf") format("truetype");
}

body {
  background-color:  #dd814e;
  color:  #14442e;
  font-size: 100%;
  font-family:"Barlow", times, serif;
}


/* Tete website */
.tete {
  max-width: 90%;
  text-align: left;
  margin: auto;
  line-height: 50%;
  font-family:"Barlow", times, serif;
}

#left {    
 text-align: left;  
 }  

#center {    
 text-align: center;  
 }  

#right{    
  text-align: right;  
 }

/* Center website */
.main {
  max-width: 90%;
  text-align: center;
  margin: auto;
}

/* Container */
.container {
    display: inline-block;
    position: relative;
}

.container .text {
    /* background: white; */
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: center;
    font-family: "Barlow";
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 70%;
    color: white;
    width: 80%;
}

.container .text1 {
    /* background: white; */
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: center;
    font-family: "Barlow";
    margin: 0 auto;
    left: 0;
    right: 0;
    font-size: 95%;
    top: 40%;
    color: white;
    width: 80%;
}

.container .text2 {
    background: #14442e;
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: left;
    font-family: "Barlow";
    margin: 0 auto;
    left: 5px;
    right: 0px;
    font-size: 95%;
    top: 40%;
    color: #dd814e;

.container .text3 {
    background: #14442e;
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: left;
    font-family: "Barlow";
    margin: 0 auto;
    left: 0px;
    right: ;
    font-size: 95%;
    top: 60%;
    color: #dd814e;
    width: 100%;
}

/* Center website */
.main {
  max-width: 90%;
  text-align: center;
  margin: auto;
}

/* Grid */
.wrapper {
  background-color:  #dd814e;
  color:  #14442e;
  font-size: 100%;
  font-family:"times new roman", times, serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  justify-items: center;
  align-items: center;

h1 {
  font-size: 400%;
  word-break: break-all;
}

h2 {
  font-size: 200%;
  word-break: break-all;
}

h3 {
  font-size: 100%;
  word-break: break-all;
}

}

/* Image */
img { */
  background-size: cover;
  max-width: 200px;
  max-height: 200px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1000px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  height:  2000px;
  }

h1 {
  font-size: 200%;
  word-break: break-all;
}

h2 {
  font-size: 100%;
  word-break: break-all;
}

h3 {
  font-size: 50%;
  word-break: break-all;
}

}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
  height:  4000px;
  }

h1 {
  font-size: 100%;
  word-break: break-all;
}

h2 {
  font-size: 50%;
  word-break: break-all;
}

h3 {
  font-size: 25%;
  word-break: break-all;
}

}