@import url('https://fonts.googleapis.com/css2?family=Days+One&family=Quicksand:wght@400;500;700&display=swap');

body {
 height: 0 auto;
 background-image: url('../image/home.jpg');
 background-repeat:no-repeat;
 margin:  0 auto;
 background-size: 100% auto;
 max-width: 100%;
 -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

html {
  --scrollbarBG: #FFFF;
  --thumbBG: #D89F9D;
}
body::-webkit-scrollbar {
  width: 20px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
}

.banner{
  color: black;
  display: inline-block;
  background-color: white;
  padding:  20px;
  position: sticky;
  top:  0;
  z-index: 9999;
  width:  100% auto;
}

.logo {
  display: inline-block;
    vertical-align: middle;
    width: 7%;
}

.logo img {
  height:  auto;
  width:  100%;
  margin-left:  60px;
}

.nav{
  list-style-type: none;
  background-color: white;
  display: inline-block;
  padding-right:  100px;
  float: right;
  align-items: center;
  align-content: center;
}

.nav a{
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav a:hover{
    color: white;
    border-radius: 100px;
    background-color: #D89F9D;
} 

.nav ul {
    list-style-type: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size:  20px;

}

.nav li {
   font-weight: bold;
   padding:  40px;
}

.nav ul li {
    display: inline;
    padding:30px;
}

.nav .current {
    color: white;
    background-color: #D89F9D;
    border-radius: 100px;
}

.nav ul li a {
    color: #2b2a2a;
    display: inline;
    text-decoration: none;
    max-width: 100%;
    text-align: center;
}


.container{
	margin: 0 auto;
	max-width: 1280px;
}

.first{
	display: flex;
  height: 500px;
}

.title{
	font-family: 'Days One', sans-serif;
	font-size:200px;
	padding-top: 150px;
	line-height: 120px;
	padding-left: 95px;
}

.explain{
	font-family: 'Quicksand', sans-serif;
	width:450px;
	padding-left:15px;
	display: inline-block;
	font-size:  30px;
	line-height: 30px;
}

.me img {
	display: inline-block;
	vertical-align: middle;
	float:  right;
	margin-left: 80px;
  max-width: 500px;
  min-width:  100%;
  top: 20px;
}

.middle{
  text-align: center;
  margin: 0 auto;
}

.mouse{
  width: 30px;
  height: 45px;
  border: 4px solid #333;
  border-radius: 60px;
  margin: 0 auto;
  position:relative;
}

.mouse::before{
  content: "";
  width: 7px;
  height: 7px;
  position:absolute;
  background: #333;
  align-content: center;
  border-radius: 50%;
  opacity: 1;
  animation: mouse 2s infinite;
  margin: 0 auto;
  left: 40%;
}

@keyframes mouse {
  from{
    opacity: 1;
    top: 15px;
  }
  to{
    opacity: 0;
    top: 30px;
  }
}

.scroll {
	font-family: 'Quicksand', sans-serif;
	font-size:  20px;
	line-height: 30px;
	text-align: center;
	padding:  5px 20px 120px 20px;
}

.latest{
	padding:  10px;
}

.title2{
	font-family: 'Days One', sans-serif;
	font-size:40px;
	text-align: center;
}

.cards{
	text-align: center;
	padding: 10px;
	vertical-align: middle;
}


.card{
    width: 300px;
    height: 350px;
    background-color: white;
    border-radius: 15px;
    display: inline-block;
    margin: 30px;
    text-align: center;
}

.Image {
	padding: 10px;
}

.Title {
	font-family: 'Quicksand', sans-serif;
	font-size:  30px;
	line-height: 30px;
	font-weight: bold;
	padding:  10px 10px 20px 10px;
}

.button{
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	border:  3px solid #2b2a2a;
  margin: 0 auto;
  width:  140px;
  border-radius: 40px;
}

.more {
  padding: 5px;
  font-size: 17px;
  transition: 0.5s;
  box-shadow: inset 0 0 0 0 #F7F6D0;

}

.more:hover {
  box-shadow: inset 200px 0 0 0 #F7F6D0;
}

.moreui {
  padding: 7px;
  font-size: 17px;
  transition: 0.5s;
  box-shadow: inset 0 0 0 0 #bfe6f5;

}

.moreui:hover {
  box-shadow: inset 200px 0 0 0 #bfe6f5;
}

.moreph {
  padding: 7px;
  font-size: 17px;
  transition: 0.5s;
  box-shadow: inset 0 0 0 0 #F3D0DF;

}

.moreph:hover {
  box-shadow: inset 200px 0 0 0 #F3D0DF;
}

a {
  list-style-type: none;
  text-decoration: none;
  color: #2b2a2a;
}
.footer{
	margin:  0 auto;
	text-align: center;
	vertical-align: middle;
	padding:  10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size:  12px;
}

