@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');


body {
    margin: 0;
    background-color: #ffede7;
}

body h1 {
    font-family: 'Amarante', sans-serif;
    font-weight: 400;
    color: black;
}

body h3 {
    font-family: 'Amarante', sans-serif;
    font-weight: 400;
    color: black;
}

body p, a, li {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: black;
    font-size: 15pt;
}

body li {
    list-style: none;
}

.pink {
    background-color: #e0aa98;
}


.headerMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 35%;
    justify-content: space-between;

}

.headerMenu a {
        color: white;
        font-size: 16pt;
        transition-property: all;
        transition-duration: 0.5s;
        transition-timing-function: ease-in-out;

}

.headerMenu a:hover {
        font-size: 19pt;
}

header img {
    width: 15%;
    padding-bottom: 3%;
    padding-top: 3%;
}


header {
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;

}

footer img {
    width: 15%;
    padding-bottom: 3%;
    padding-top: 3%;
    padding-right: 1%;
}


footer {
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;

}

.picture1 {
    width: 20%;
    padding-top: 7%;
}

.picture1 img {
    width: 100%;
}

.picture2 {
    width: 20%;
    padding-top: 4%;
}

.picture2 img {
    width: 100%;
}

.picture3 {
    width: 20%;
    padding-top: 2.5%;
}

.picture3 img {
    width: 100%;
}

.picture4 {
    width: 20%;
    padding-top: 7.5%;
}

.picture4 img {
    width: 100%;
}

.picture5 {
    width: 18%;
    padding-top: 3%;
}

.picture5 img {
    width: 100%;
}

.picture6 {
    width: 17%;
    padding-top: 0.5%;
}

.picture6 img {
    width: 100%;
}

.picture7 {
    width: 20%;
    padding-top: 6.5%;
}

.picture7 img {
    width: 100%;
}

hr {
    border-color: #e0aa98;
}

.footerMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 75%;
    justify-content: space-between;

}

.footerMenu p {
    color: white;
}

.footerMenu a {
        color: white;
        font-size: 16pt;
        transition-property: all;
        transition-duration: 0.5s;
        transition-timing-function: ease-in-out;

}

.footerMenu a:hover {
        text-decoration-line: underline;
        text-decoration-style: double;
}

.container {
    text-align: center;
    padding-top: 2%;
}

.container h1 {
    font-size: 30pt;
    color: #e0aa98;
}

.container p {
    padding-bottom: 3%;
}

.container h3 {
    font-size: 15pt;
    color: #e0aa98;
}

.container a {
    background-color: #e0aa98;
    border-style: double;
    border-width: 5px;
    border-radius: 25px;
    border-color: #e0aa98;
    background: none;
    padding: 10px;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

.container a:hover {
    color: #e0aa98;
    font-size: 17pt;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 5%;
}

.reverse-flex-container {
    display: flex;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 5%;
}

.text-container {
    padding-top: 7%;
    width: 70%;
}

.text-container h3 {
    font-size: 18pt;
    color: #e0aa98;
}

::selection {
    background-color: #e0aa98;
    color: white;
}

::-moz-selection {
    background-color: #e0aa98;
    color: white;
}



@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, 1px) rotate(0deg); }

}

#menuToggle
{
  display: none;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: absolute;
  top: 40px;
  left: 25px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: black;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #e0aa98;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #ffede7;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: black;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ffede7;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  opacity: 85%;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}


@media screen and (min-width: 1020px) and (max-width: 1220px) {
    .headerMenu {
        width: 50%;
    }
}

@media screen and (min-width: 680px) and (max-width: 1020px) {
    .headerMenu {
        width: 70%;
    }

    .text-container {
        width: 60%;
    }

    .flex-container img {
        padding-top: 15%;
        width: 100%;
    }

    .reverse-flex-container img {
        padding-top: 15%;
        width: 100%;
    }
}


@media screen and (min-width: 550px) and (max-width: 679px)  {
    .text-container {
        width: 50%;
    }

    .picture1 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture2 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture3 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture4 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture5 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture6 {
        width: 45%;
        padding-top: 13.5%;
    }

    .picture7 {
        width: 45%;
        padding-top: 13.5%;
    }

    .container h1 {
        font-size: 22pt;
    }
    
    .flex-container {
        padding-top: 1%;
    }

    .reverse-flex-container {
        padding-top: 1%;
    }

    .footerMenu a{
        font-size: 10pt;
    }

    .footerMenu p {
        font-size: 10pt;
    }
    
    .footerMenu {
        width: 70%;
    }

    header {
        justify-content: flex-end;
    }

    header img {
        width: 25%;
    }

    footer img {
        width: 20%;
    }

    .headerMenu {
        display: none;
    }

    #menuToggle {
        display: block;
    }

}



@media screen and (min-width: 320px) and (max-width: 480px) {

    .text-container p {
        font-size: 11pt;
    }

    .text-container {
        width: 100%;
    }

    .flex-container {
        flex-direction: column;
    }

    .reverse-flex-container {
        flex-direction: column-reverse;
    }

    .picture1 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture1 img {
        width: 60%;
        
    }

    .picture2 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture2 img {
        width: 60%;
        
    }

    .picture3 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture3 img {
        width: 60%;
        
    }

    .picture4 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture4 img {
        width: 60%;
        
    }

    .picture5 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture5 img {
        width: 60%;
        
    }

    .picture6 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture6 img {
        width: 60%;
        
    }

    .picture7 {
        width: 80%;
        padding-top: 5%;
        padding-left: 27.5%;
    }

    .picture7 img {
        width: 60%;
        
    }

    .container h1 {
        font-size: 19pt;
    }

    .container p {
        font-size: 12pt;
        padding-bottom: 5%;
    }

    .container a {
        font-size: 14pt;
    }
    
    .flex-container {
        padding-top: 1%;
    }

    .footerMenu a{
        font-size: 7pt;
    }

    .footerMenu p {
        display: none;
    }
    
    .footerMenu {
        width: 100%;
    }

    header {
        justify-content: flex-end;
    }

    header img {
        width: 45%;
    }

    footer img {
        width: 35%;
    }

    footer {
        margin-top: 15%;
    }

    .headerMenu {
        display: none;
    }

    #menuToggle {
        display: block;
    }

}
