@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{
  display: block;
  margin:  0 auto;
  align-items: center;
  align-content: center;
}

.project{
    font-family: 'Days One', sans-serif;
    font-size:40px;
    text-align: center;
    padding:  10px;
}

.content{
    text-align: center;
    vertical-align: middle;
    max-width: 100%;
    width:  100%;
    top:  23%;
    display: block;
}

.menus{
    width: 250px;
    display: inline-block;
    margin: 0 auto;
    padding: 7px;
}

.menu{
    vertical-align: middle;
    text-align: center;
}

.menu {
    position: relative;
    max-width: 100%;
}
.menu img.image-hover {
      position: absolute;
      top: 0;
      right: 0;
      left: 39%;
      bottom: 0;
      object-fit: contain;
      opacity: 0;
}
.menu:hover img.image-hover {
      opacity: 2;
    }

.menu.active img.image-hover{
    opacity:1 ;
}

.titles{
    font-family: 'Days One', sans-serif;
    font-size:20px;
    margin:  0 auto;
    text-align: center;
    vertical-align: middle;
}

.cards{
    text-align: center;
    vertical-align: middle;
    top: 44%;
    left: 5%;
    right: 5%;
    max-width: 100%;
}


.card{
    max-width: 100%;
    min-width: 290px;
    background-color: white;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    margin: 0.5% 1% 0.5% 1%;
    min-height: 320px;
}

.Image{
    margin: 4%;
}

.Title {
    font-family: 'Quicksand', sans-serif;
    font-size:  25px;
    line-height: 30px;
    font-weight: bold;
    padding:  10% 1% 1% 2%;
    margin-bottom: 20%;
}
a {
  list-style-type: none;
  text-decoration: none;
  color: #2b2a2a;
}

.footer{
    bottom: 0%;
    margin:  0 auto;
    text-align: center;
    vertical-align: middle;
    padding:  5px;
    font-size:  12px;
    font-family: 'Quicksand', sans-serif;
    color: black;
    margin-top: 10px;
}