body{
    background-color:rgb(255, 255, 255);
    color: rgb(81, 81, 81);
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 15px;
    font-family: "argent-pixel-cf", sans-serif;
    text-align: center;
    overflow-x: hidden;
}



section{
    background-color:rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
}
.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 40px;
    overflow: hidden;
  }
  .grid-container > div {
    background-color: #ffffff;
    color: #484848;
    padding: 20px;
    font-size: 20px;
    text-align: left;
    margin: auto;
    margin-top:40px;
    border-radius: 20px;
    border-style: solid;
    border-color:rgb(81, 81, 81);
    overflow: hidden;
  }

  .card {
    width: 350px;
    height: 270px;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .card * {
    transition: 0.45s ease-in-out;
  }
  
  .card h3 {
    padding-top:50px;
    padding-bottom: 100px;
    font-size: 80px;
    text-align: center;
  }
  
  .card .focus-content {
    display: block;
  }
  
  .card p {
    margin: 0;
    line-height: 1.5;
    font-size:15px;
  }
  
  .card:hover h3, .card:focus-within h3 {
    padding: 8px 12px 0;
  }

  .card:hover{
    height: 720px;
  }


.file1{
    background-color: rgb(255, 235, 253);
}
.file2{
    background-color: rgb(222, 254, 255);
}
.file3{
    background-color: rgb(255, 255, 208);
}
.file4{
    background-color: rgb(228, 255, 217);
}
.file5{
    background-color: rgb(201, 217, 255);
}
.file6{
    background-color: rgb(255, 232, 239);
}
.file7{
    background-color: rgb(222, 221, 255);
}
.aboutpage{
    background-color: rgb(234, 234, 234);
}

.box{
    text-align:left;
    padding: 20px;
    background-color:rgb(255, 255, 255);
    border-radius: 20px;
    border-style: solid;
    border-color:rgb(81, 81, 81);
    width: 100%;
    max-width: 600px;
    margin: auto;
    margin-top: -20px;
}
.box-image{
  text-align:center;
  padding: 20px;
  background-color:rgb(255, 255, 255);
  border-radius: 20px;
  border-style: solid;
  border-color:rgb(81, 81, 81);
  margin: auto;
  margin-bottom: 50px;
  width: 100%;
  max-width: 700px;
}
.lastbox{
    text-align:left;
    padding: 20px;
    background-color:rgb(255, 255, 255);
    border-radius: 20px;
    border-style: solid;
    border-color:rgb(81, 81, 81);
    width: 100%;
    max-width: 600px;
    margin: auto;
    margin-top: -20px;
    padding-bottom:85px;
}

.pages{
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    padding-top: 80px;
}

.foot{
    position:relative;
    margin-top:-180px;
}


.about{
    text-align:center;
    padding: 20px;
    margin-top: 20px;
    background-color:rgb(255, 255, 255);
    border-radius: 20px;
    max-width: 50%;
    margin:auto;
}


summary{
    padding-bottom: 15px;
}

figcaption{
    font-size: 19px;
}

.nav{
    margin-bottom: 20px;
    text-align: center;
    font-family: "argent-pixel-cf", sans-serif;
    font-size: 15px;
}

.nav-left{
    background-color: rgb(222, 222, 222);
    padding: 10px 10px;
    border-radius: 25px;
    margin-right: 10px;
    transition: all 0.25s linear;
}
.nav-left:hover{
    background-color: rgb(167, 214, 255);
}

.nav-right{
    background-color: rgb(192, 192, 192);
    padding: 10px 10px;
    border-radius: 25px;
    margin-right: 10px;
    transition: all 0.25s linear;
}
.nav-right:hover{
    background-color: rgb(255, 212, 255);
}

.container{
    display: inline-block;
  }

  .text{
    font-size: 5em;
    border-right: 5px solid;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 2s,
        cursor .4s step-end infinite alternate;
  }

  @keyframes cursor{
    50% {border-color: transparent}
  }

  @keyframes typing {
    from {width:0}
}

h2{
    font-size: 40px;
    text-align: center;
}

.space{
    display: block;
    font-size: 20px;
    padding: 50px;
    margin: auto;
    max-width: 500px;
    color: white;
}

.slider{
    width: 100%;
    height: var(--height);
    min-width: calc(var(--width) * var(--quantity));
}
.slider .list{
    display: flex;
    width: 100%;
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    filter: grayscale(1);
    transition: filter 0.5s;
    transition: all 0.25s linear;
    animation-delay: calc(((10s / var(--quantity)) * (var(--position) - 1)) );
}
.slider .list .item img{
    width: 100%;
}

@keyframes autoRun{
    from{
        left: 100%;
    } to{
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
    transform: scale(1.10);
}


@media screen and (max-width:930px){
    body {
        font-size: 15px;
    }
    div{
        font-size: 15px;
    }
    .card{
      width:90%;
      height:1100px;
        }

    .card h3{
      font-size:55px;
      padding-bottom:20px;
      padding-top:10px;
    }
    .card p{
      font-size:12px;
    }

}

@media only screen and (max-width: 600px) {
    body {
        font-size: 12px;
    }
    div{
        font-size: 12px;
    }
    .text{
      font-size:40px;
    }
    h2{
      font-size:30px;
    }

    .foot img{
      width:80%;
    }
    .card{
      width:100%;
      height:1060px;
        }
    .card h3{
      font-size:35px;
    }
    .card p{
      font-size:8px;
    }

    .box {
      border-width: 1px;
    }
    .lastbox{
      border-width: 1px;
    }
  
}


* {
    box-sizing: border-box;
  }
  


  
  .code {
    font-size: 60px;
    display: flex;
    flex-wrap: nowrap;
    color: hsl(0, 0%, 25%);
    border-radius: 1rem;
    justify-content: center;
  }
  
  .code:hover {
    cursor: pointer;
  }
  
  .digit {
    display: flex;
    height: 100%;
    padding: .9rem;
  }

  
  .digit span {
    scale: calc(var(--active, 0) + 0.8);
    filter: blur(calc((1 - var(--active, 0)) * 1rem));
    transition: scale calc(((1 - var(--active, 0)) + 0.2) * 1s), filter calc(((1 - var(--active, 0)) + 0.2) * 1s);
  }
  
  ul {
    padding: 0;
    margin: 0;
  }
  
  .digit:first-of-type {
    padding-left: 5rem;
  }
  .digit:last-of-type {
    padding-right: 5rem;
  }
  
  :root {
    --lerp-0: 1; /* === sin(90deg) */
    --lerp-1: calc(sin(50deg));
    --lerp-2: calc(sin(45deg));
    --lerp-3: calc(sin(35deg));
    --lerp-4: calc(sin(25deg));
    --lerp-5: calc(sin(15deg));
  }
  
  .digit:is(:hover, :focus-visible) {
    --active: var(--lerp-0);
  }
  .digit:is(:hover, :focus-visible) + .digit,
  .digit:has(+ .digit:is(:hover, :focus-visible)) {
    --active: var(--lerp-1);
  }
  .digit:is(:hover, :focus-visible) + .digit + .digit,
  .digit:has(+ .digit + .digit:is(:hover, :focus-visible)) {
    --active: var(--lerp-2);
  }
  .digit:is(:hover, :focus-visible) + .digit + .digit + .digit,
  .digit:has(+ .digit + .digit + .digit:is(:hover, :focus-visible)) {
    --active: var(--lerp-3);
  }
  .digit:is(:hover, :focus-visible) + .digit + .digit + .digit + .digit,
  .digit:has(+ .digit + .digit + .digit + .digit:is(:hover, :focus-visible)) {
    --active: var(--lerp-4);
  }
  .digit:is(:hover, :focus-visible) + .digit + .digit + .digit + .digit + .digit,
  .digit:has(+ .digit + .digit + .digit + .digit + .digit:is(:hover, :focus-visible)) {
    --active: var(--lerp-5);
  }



