@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;
    position: fixed;
    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;
}


.bbs-box1 {
  padding-top: 10%;
  padding-bottom: 2%;
  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 {
  background-color: #f6e5d7;
}

.box1 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    
}

.box1 img {
    width: 60%;
display: block;
margin-right: auto;
margin-left: auto;
}

.box1 img:hover {
  opacity:0.5;
transition:0.3s;
}



section p:nth-of-type(1) {
  width: 39%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

section p:nth-of-type(3) {
  width: 46%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

h2 {
  margin-left: 2%;
  margin-top: 5%;
  color: #978d86;
  font-size: 2vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.border1 {
  
  margin-bottom: 2%;
  width: 80%;
  border: solid 1.5px white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.adjustment {
  margin-left: 2%;
  margin-top: 2%;
  color: #978d86;
  font-size: 1.8vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

span.marker {
  
  background-image: repeating-linear-gradient(-45deg,
  rgba(151, 141, 134, 0.22) 0, rgba(151, 141, 134, 0.22) 3px,
  transparent 3px, transparent 6px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 40%;
}

section p:nth-of-type(5) {
  width: 27%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

section ul {
width: 100%;
}

section ul li {
  width: 45%;
  margin-left: 5%;
  color: #978d86;
  font-size: 1.3vw;
  font-family: serif;
  list-style-type:circle;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.flex-box1 {
    width: 100%;
    display: flex;
}

.collar-img {
  margin-top: 1%;
  margin-bottom: 5%;
  margin-left: 5%;
  width: 15%;
}

.collar-img img {

  width: 100%;
 
}


/* 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;
  }