/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
	box-sizing: border-box;
  }
  /*
	2. Remove default margin
  */
  * {
	margin: 0;
  }
  /*
	3. Allow percentage-based heights in the application
  */
  html, body {
	height: 100%;
  }
  /*
	Typographic tweaks!
	4. Add accessible line-height
	5. Improve text rendering
  */
  body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
  }
  /*
	6. Improve media defaults
  */
  img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
  }
  /*
	7. Remove built-in form typography styles
  */
  input, button, textarea, select {
	font: inherit;
  }
  /*
	8. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
  }
  /*
	9. Create a root stacking context
  */
  #root, #__next {
	isolation: isolate;
  }

/*  SITE  */
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 1)
}

/* === HEADER === */
header {
    margin: 0 auto;
    max-width: 900px;
}

header .back {
    text-align: right;
    padding-right: 20px;
    padding-top: 10px;
    
}

header .back a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.750rem;
}


header .block {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

header .block h1 {
    text-decoration: none;
    font-size: 4rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgba(224, 175, 103, 1);
    text-align: center;

}


/* CONTENT */
#content {
    max-width: 900px;
    margin-top: 0;
    margin: auto;
}

#woob-back {
    background-color: rgba(26, 26, 26, 1);
}

#woob {
    max-width: 900px;
    margin: auto;
    padding-top: 1rem;
}

#woob h2 {
    font-size: 1.7rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-bottom: 0.64rem;
    padding: 0px 10px;
    line-height: 1.7rem;
}

#woob h3 {
    font-size: 1.7rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(224, 175, 103, 1);
    font-style: italic;
    width: 90px;
    margin: auto;
    padding-bottom: 1rem;
}

#woob h4 {
    line-height: 1.75rem;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
}

#woob p {
    line-height: 1.75rem;
    font-size: 0.875rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
}

#woob .cl1 {
    margin: 10px auto auto auto;
    text-align: center;
}
#woob .cl2 {
    margin: 20px 30px 20px 30px;
    text-align: left;
}


#woob-img {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    /* <--- IMPORTANT: top-align all items */
}

#woob-img .cl3 {
    max-width: 300px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Remove justify-content:center to avoid vertical misalignment */
}

#woob-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}


#woob-img .cl3 p {
    line-height: 1.5rem;
    font-size: 0.825rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-top: 0.625rem;
}

#woob-img .cl3 h2 {
    line-height: 1rem;
    font-size: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 2px;
}
#woob-img .cl3 h2 span{
    font-size: 0.8rem;    
}

#woob-img .cl3 h3 {
    line-height: 1.5rem;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    color: rgb(212, 131, 24);
    text-align: center;
    margin-top: 0.5rem;
}





#block-contact h2 {
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-top: 2.5rem;
}

#block-contact p {
    line-height: 1.75rem;
    font-size: 0.825rem;
    font-family: 'Raleway', sans-serif;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    text-align: center;
}



/* FOOTER */
footer {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center
}

footer p {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
}

footer a{
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}
footer a:active{
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}
footer a:hover{
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}