*
{
    font-family: 'Montserrat', sans-serif;
    font-weight: lighter;
    box-sizing: border-box;
}

body
{
    width: 100%;
    margin: 0;
    background-color: burlywood;
}

@keyframes fadein {
    from{opacity: 0}
    to{opacity: 1}
}

@keyframes colorful {
    from{color: orange}
    to{color: black}
}

header
{
    width: 100%;
    text-align: center;
    animation: fadein;
    animation-duration: 2s;
}



h1
{
    color: white;
    font-size: 64px;
}

#purchead
{
    width: 100%;
    text-align: center;
    font-size: 64px;
    margin-top: 15%;
}

#subtext
{
    text-align: center;
    font-size: 48px;
    margin-top: 30%;
}
#texteroni
{
    margin-left: 15%;
    margin-right: 15%;
    text-align: justify;
    animation: fadein;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
    color: white;
}

#statictexteroni
{
    margin-left: 22%;
    margin-right: 22%;
    text-align: justify;
}

#disclaimer
{
    font-size: 10px;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
    color: white;

}
#desplegable
{
    margin-left: auto;
    margin-right: auto;
}

/*ESTIL GALERIA*/
img {
  vertical-align: middle;
}
/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
  width: 600px;
  margin-right: auto;
  margin-left: auto;
  animation: fadein;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: both;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Four columns side by side */
.column {
  float: left;
  width: 25%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
/*FI DE L'ESTIL DE LA GALERIA*/

/*Purchase Button*/
#btn1 {
    border: none;
    background-color: deepskyblue;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    color: white;
    animation: fadein;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
    margin-bottom: 10%;
    margin-top: 0%;
}

/* On mouse-over */
#btn1:hover {
  background: #eee;
  color: red;
}

/*purchase complete button*/
#btn2 {
    border: none;
    background-color: gray;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    color: white;
    animation: fadein;
    animation-duration: 2s;
    animation-fill-mode: both;
    margin-left: auto;
}

/* On mouse-over */
#btn2:hover {
  background: #eee;
  color: red;
}

#btn3
{
  border: none;
  padding: 10px;
  background-color: deepskyblue;
  font-size: 30px;
  cursor: pointer;
  display: inline-block;
  color: white;
  animation: fadein;
  animation-duration: 1s;
  animation-fill-mode: both;
  margin-left: auto;
  margin-right: auto;
}

#btn3:hover {
  background: #eee;
  color: red;
}

#mastergrid
{
    display: grid;
    grid-template-columns: 50% 600px;

}

#landinggrid
{
    display: grid;
    grid-template-rows: auto auto auto auto;
}

#sub
{
    text-align: center;
}

#sub2
{
    text-align: center;
    margin-top: 2%;
}

#album
{
    margin-left: auto;
    margin-right: 0;
    width: 600px;
    text-align: center;
}

#photos
{
    display: grid;
    grid-template-columns: 300px 50%;
    justify-content: center;
}

#albumcover
{
    opacity: 0;
    width: 92%;
    margin: auto;
    display: inline-block;
    animation: fadein;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: both;

}

#songs
{
    display: grid;
    grid-template-columns: auto auto;
    grid-row-gap: 25px;
    padding: 25px;

}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    animation: fadein;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: auto; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.pic
{
    width: 100%;
}

.griditem.left
{
    opacity: 0;
    text-align: right;
    animation: fadein;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
}

.griditem.right
{
    opacity: 0;
    text-align: left;
    animation: fadein;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: both;
}

.play
{
    position: relative;
    border: 0;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 32px;
    border-color: transparent transparent transparent #202020;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 16px 0 16px 22px;
}

.play.pause
{
    border-style: double;
    border-width: 0px 0 0px 22px;
}

.play:hover
{
    border-color: transparent transparent transparent #404040;
}

.songtitle
{
    font-size: 32px;
    color: white;
}

.songnumber
{
    font-size: 32px;
    color: #ff47fb;
    opacity: .5;
}

@media only screen and (max-width: 1200px)
{
    h1
    {
        font-size: 96px;
        color: white;
    }

    #btn1
    {
        font-size: 40px;
    }

    #btn3
    {
        font-size: 60px;
    }
    #paypbtn
    {
      border: 0px none;
      padding: 0px;
      width: 300px;
      height: 100px;"
    }
    #desplegable
    {
        font-size: 35px;
    }
    #mobildesplegable
    {
        font-size: 35px;
    }
    #statictexteroni
    {
        font-size: 35px;
    }
    #texteroni
    {
        margin-left: 10%;
        margin-right: 10%;
        font-size: 35px;
    }
    #disclaimer
    {
        font-size: 10px;
        text-align: justify;
        color: white;
    }
    #mastergrid
    {
        grid-template-columns: auto;
    }

    #album
    {
        width: 100%;
    }

    .close
    {
        font-size: 100px;
    }
    .container
    {
        width: auto;
        margin-left: 4%;
        margin-right: 4%;
    }

    .prev,
    .next
    {
      font-size: 50px;
    }
    .play
    {
        height: 64px;
        border-width: 32px 0 32px 44px;
    }

    .play.pause
    {
        border-width: 0px 0 0px 44px;
    }

    .songtitle
    {
        font-size: 50px;
        color: white;
        margin-bottom: 20px;
    }

    .songnumber
    {
        font-size: 64px;
        color: blue;
    }

}
