@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

@font-face {
  font-family: Playfair_Display;
  src: url(../font/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf);
}

@font-face {
  font-family: Noto_Sans;
  src: url(../font/Noto_Sans/static/NotoSans-ExtraBold.ttf)
}

nav {
  z-index: 2;
    
    top: 0;
    padding-top: 3%;
    padding-bottom: 3%;
    width: 100%;
    background-color: rgb(115, 208, 194);
    box-shadow: 2px 1px 10px 2px rgba(0, 0, 0, 0.22);
}

nav ul {
    
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

nav ul li {
    width: 100%;
}

nav ul li a {
    width: 100%;
    display: block;
    text-align: center;
    text-align: center;
    font-size: 1.5vw;
    font-family: serif;
    color: white;
}

section:nth-of-type(1) {
    padding-top: 10%;
    padding-bottom: 5%;
    background-color: #f6e5d7;
}

.bbs{
    align-items: center;
    color: rgba(237, 141, 73, 0.3);
    display: flex;
    overflow:hidden;
    width: 100%;
    white-space:nowrap;
    z-index: 1;
  }
  .bbs ul {
    animation: flowing 150s linear infinite;
    font-size: 20px;
    transform:translateX(100%);
    margin: 0;
    padding: 0;
    
  }
  .bbs ul li{
    display: inline-block;
    padding-right: 10px;
    font-size: 7vw;
    font-family: Playfair_Display;
  
  }
  @keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
  }

  section:nth-of-type(2) {
    width: 100%;
    background-color: #f6e5d7;
  }

  .flex-box1 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

  .flex-box1 img {
    width: 40%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    max-width:60%;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.22);
  }

  .imges {
    margin-left: 14%;
    margin-bottom: 10%;
    width: 32%;
    max-width:60%;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.22);
  }


/* GENERAL STYLING */

article {
    width: 50%;
    margin: 0 auto;
  }

  
  /* IMAGE BLUR EFFECT */

  .img-blur {
    animation: imageBlur 1s both;
  }
  @keyframes imageBlur {
    100% {
      -webkit-filter: blur(0);
      filter: blur(0);
    }
  }

  footer {
    padding-top: 2%;
    width: 100%;
    background-color: #73d0c2;
    box-shadow: 2px -1px 10px 2px rgba(0, 0, 0, 0.22);
  }
  
  footer p {
    margin-left: 3%;
    width: 10%;
    color: white;
    line-height: 3vw;
    font-weight: 100;
    font-family: serif;
    font-size: 3vw;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.22);
  }
  
  footer p:nth-of-type(2) {
    width: 93%;
    border-bottom:  solid 1.5px white;
  }
  
  .flex-box6 p {
    margin-left: 20%;
    width: 20%;
    text-align: center;
    
  }
  
  .flex-box6 {
    width: 100%;
    display: flex;
  }
  
  address {
    margin-left: 3%;
    width: 20%;
    background-color: #73d0c2;
  }
  
  footer img {
    width: 10%;
    
  }
  
  footer a {
    display: block;
  }
  
  footer p small { 
    font-size: 1.2vw;
  }