/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.irish-grover-regular {
  font-family: "Irish Grover", system-ui;
  font-weight: 400px;
  font-size: 50px;
  font-style: normal;
  color: white;
}

.joti-one-regular {
  font-family: "Joti One", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

header{
  width: 100%;
  height: 135px;
  background-color: rgb(0, 0, 0);
  padding: 20px;
  
}

h1{
  font-family: "Joti One", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  padding-bottom: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    color: #fff;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid blueviolet;
    
}


.navbar .logo {
  font-size: 50px;
  font-family: "Joti One", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.navbar nav ul li a:hover {
  color: rgb(152, 0, 0);
}


body {
  background-color: rgb(37, 37, 37);
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: cover
}

.grid {
  position: relative;
  margin: 0 auto;
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 50px;
 max-width: 1700px;
}
.grid figure {
  border: 8px solid rgb(192, 8, 8);
  border-radius: 10px;
  transition: color 0.5s ease;
}

.grid.a figure {
  border: 8px solid #755540;

}

.grid.b figure {
  border: 8px solid rgb(0, 0, 67);

}

.grid.c figure {
  border: 8px solid rgb(89, 0, 89);

}

.grid figure img{
  width: 100%;
}


.circle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  margin: 0 auto;
  position: relative;
  gap: 50px;
  max-width: 700px;
  
}



hr.rounded {
  border-top: 8px solid rgb(116, 22, 22);
  border-radius: 5px;
}

h2{
position: relative;
  top: 50px;
  bottom: 20px;
  text-align: center;
  font-weight: 400px;
  font-size: 50px;
  color: white;
}

h3{
  position: relative;
  padding: 50px;
  text-align: center;
  font-weight: 400px;
  font-size: 50px;
  color: white;
  
}

.section{
  padding: 100px;
  text-align: center;
  background-color: rgb(5, 5, 99);
}

.section.a {

  background-color: 	#755540;
}

.section.b {

  background-color: rgb(0, 0, 67);
}
.section.c {

  background-color: rgb(89, 0, 89);

}

.container.d{ 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section {
  font-size: 30px;
  color: rgb(255, 255, 255);
  padding: 20px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  position: relative;
}

.container {
  position: relative;
  max-width: 1200px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #755540;
}

.overlay.b {
  
  background-color: rgb(0, 0, 67);
}

.overlay.c {

  background-color: rgb(89, 0, 89);
}

.container:hover .overlay {
  opacity: 1;
}
/*padding texte*/
.text{
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: left;
}


.disk {
  width: 150px;
  height: 150px;
  object-fit: cover;
  -webkit-mask-image: url(https://i.postimg.cc/3RYpcLqS/14.png);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  animation-duration: 3s;
  animation-iteration-count: infinite;

  }
  
  .disk {
          animation-name: spin;
          animation-timing-function: linear;
      }
      @keyframes spin {
          from { transform: rotate(0deg) }
          to { transform: rotate(360deg) }
      }

  embed { display: none; }
  button:active + embed { display: block; }

