:root{
  color-scheme: light dark;
  --kuma-color: #7daaff;
  --kuma-intense-color: #2c75ff;
}

h2{
  text-align: center;
},
h1,
h3,
h4,
h5 {
  color: black;
  font-family: "Verdana", sans-serif;
}

b,
strong {
  color: black;
}

a {
  color: black;
}

img,
picture,
video {
  max_width: 100%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}


button{
  font-family: "Georgia", serif;
  font-size: 2.2vmin;
}

html {
  color: black;
  font-family: "Georgia", serif;
  font-size: 2.2vmin;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #dcdcdc;
}

body {
  padding: 1em;
  display: flex;
  flex-direction: column;
  max-width:1000px;
}

/*---------------- header specific --------------------*/
nav {
  display:grid;
  padding-top:5%;
  text-align: center;
  justify-content: center;
  font-size: 3vmin;
  font-weight: bold;
  grid-template-columns: 1fr 1fr 1fr;
}

.header {
  padding: 2em;
  box-shadow:
    5px 5px 10px black;
}

.header img{
  max-height: 200px;
}
/*------------------ main grid ------------*/
.conteneur{
  display: grid;
  gap: 2em;
  padding-top: 2em;
  align-items: center;
}

.conteneur-post{
  border-radius: 50px;
  background-color: var(--kuma-color);
  display: grid;
  padding: 1em;
  box-shadow: 5px 5px 10px black;
}

.conteneur button{
  width: 100%;
}

/*------------- présentation part css ----------*/
#index{
  grid-template-columns: 1fr 1fr;
}

.box{
  padding: 10px;
  display: flex;
  text-align: justify;
  align-items: center;
  justify-content: center;
  height: auto;
}
.box img{
  border-radius: 50px;
  align-self: center;
  max-height: 400px;
  width: auto;
}

/*------------------ project part css ----------------*/
#project {
  border: none;
  grid-template-areas:
    "title vignette"
    "tldr vignette";/*1fr 1fr;*/
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  cursor: pointer;
}

#project:hover{
  background-color: var(--kuma-intense-color);
}

.title {
  grid-area: title;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.tldr {
  grid-area: tldr;
  padding: 10px;
  display: flex;
  justify-content: top;
  align-items: top;
  text-align: justify;
  text-decoration: none;
}

.vignette {
  grid-area: vignette;
  display: flex;
  padding: 10px;
  align-items: center;
  max-height: 200px;
}

.vignette img{
  border-radius: 50%;
}

.post {
  text-align: justify;
}
/*-----------------------------------------------------*/
footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer button{
  border: none;
  background-color: var(--kuma-color);
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  font-weight: bold;
  box-shadow:
    5px 5px 10px black;
}
footer button:hover{
  background-color: var(--kuma-intense-color);
}

copyright {
  text-align: center;
  padding-top: 1em;
}
