/* color schema: https://www.schemecolor.com/strawberry-and-cherry-cake-color-scheme.php */

:root {
  --main-bg-color: coral;
  --footer-bg-color: #491522;
  --em: #C8290C;
  --a-hover: #C8290C;
}


.left { float: left; }
.right { float: right; }
.clear { clear: both; }

.hide { display: none; }
.show { display: block; }

.error { font-weight: bold; color: red; }

.wrapper {
    width: 800px;
    margin: auto;
}

h1 {  
  font-size: 36px;
}

h3 {
  margin-top: 30px;
  font-weight: bold;
}


@media (max-width: 800px) {
  .wrapper {
    width: 100%;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  section > ul {
    margin-left: 0px;
    padding-left: 10px;
  }

  ul {
    padding-left: 20px;
  }
}



.content{
    padding: 20px;
}

body {
    background-image: url(fondo.png);
    background-repeat: no-repeat;
}

.logo {
    
}
section {
    border-radius: 10px;
    margin: 10px 0px;
    border: 1px solid #ebebeb;
    padding: 20px;
}

fieldset {
    border: 1px solid #ebebeb;
    padding: 20px;
}

.info,
.pas {
    padding: 10px 20px;
}

.pas em {
    color: #009CA5;
    font-weight: bold;
}

.pas span {
    font-style: italic;
    font-size: 85%;
}

.descargar {
    display: block;
    color: #232323;
}

.descargar img {
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
}

.descargar:hover {
    color: var(--a-hover);
}



.info.left {
  width: 40%;
}

@media (max-width: 800px) {
  .info.left {
    width: 100%;
  }
}





.footer {
    background-color: var(--footer-bg-color);
    padding: 20px;
    text-align: center;
    color: white;
}


.preus td.preu,
.preus td.header,
.preus td.lheader {
    padding: 5px 10px;
    border: 1px solid #292929;
}
.preus td.header {
    width: 100px;
    text-align: center;
    background-color: var(--main-bg-color);
}


.preus td.lheader {
    width: 180px;
    text-align: center;
    background-color: #a2e2e5;
}

.preus .preu {
    text-align: center;
    font-size: 120%;
}


a.inscripcions {
    display: block;
    float: right;
    background-color: #272626;
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 270px;
}

a.inscripcions:hover,
a.inscripcions:active {
    color: white;
    text-decoration: none;
}

.em { color: var(--em); }


/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #272626 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}

.hvr-outline-in:hover:before, .hvr-outline-in:focus:before  {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
  text-decoration: none;
}