@font-face {
    font-family: 'dosis';
    src: url('font/dosis.woff2') format('woff2'),
         url('font/dosis.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body, html{
    min-width:350px;
    margin:0px;
    padding:0px;
    color:#E0A7A0;
    background-color:white;
    font-family: 'dosis';
}
.sticky{
    display:none;
}
.grid-3 {
  display: grid;
  grid-template-columns: auto 250px auto;
  padding: 0px;
  margin-top:30px;
}
.hidden_header{
    display:none;
}
main{
    background-image: url("background/pink_fabric_15.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin:0px;
    padding:0px;
}
footer{
    color:white;
    background-color:#E0A7A0;
    border: 1px solid white;
    padding:0px;
    margin:0px;
}
@media (min-width: 711px) and (max-width: 916px) {
    .sticky{
        display:block !important;
        background-color:#292A2A;
        color:#F3C7A1;
        text-align: center;
        font-size:24px;
        font-family:archivo_blackregular;
        padding-top:5px;
        padding-bottom:5px;
        position:sticky; top:0;
        height:auto;
    }
    .contact_info{
        display:none;
    }
    .grid-3 {
        display: grid;
        grid-template-columns: 50% 50%;
        padding: 0px;
    }
    .Logo{
        text-align: right;
    }
}
@media (max-width: 710px) {
    .sticky{
        display:block !important;
        background-color:#292A2A;
        color:#F3C7A1;
        text-align: center;
        font-size:24px;
        font-family:archivo_blackregular;
        padding-top:5px;
        padding-bottom:5px;
        position:sticky; top:0;
        height:auto;
    }
    .contact_info{
        display:none;
    }
    .grid-3 {
        display: grid;
        grid-template-columns: 100%;
        padding: 0px;
    }
    .header_text{
        display:none;
    }
    .Logo{
        text-align: center;
    }
}
.no_border{
    vertical-align:top;
    margin:0px;
    padding:0px;
}
.text_right{
    text-align:right;
}
.text_center{
    text-align:center;
}
.dosis{
    font-family: 'dosis';
}
.text_big {
    font-size:60px;
}
.text_meduim {
    font-size:36px;
}
.text_normal {
    font-size:28px;
}
.text_small {
    font-size:16px;
}
.no_spaces{
    margin:0px;
    padding:0px;
}
.Pink{
    color:#E0A7A0;
}
.iPink{
    background-color:#E0A7A0;
    border: 1px solid white;
}
.debug{
    border:  1px solid black;
}

      /* Style the images and modal dialog */
      #myModal{
        margin:0px;
        padding:0px;
      }
      #gallery{
        margin-left:10%;
        margin-right:10%;
        margin-bottom:100px;
      }
      .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      .gallery img {
        width: 100px;
        height: 100px;
        margin: 10px;
        cursor: pointer;
      }
      .modal {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(224, 167, 160, 0.9);
      }
      .modal-content {
        margin: 0% auto;
        padding: 0px;
        max-width: 100vw;
        max-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .modal-content img {
        max-width: 100vw;
        max-height: 100vh;
        margin: 0 auto;
      }
      .close {
        color: #fff;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 80px;
        cursor: pointer;
      }
