html,
body {
	border: none;
	margin: 0;
	padding: 0;
    font-family: yomogi;
}
a{
    text-decoration: none;
}
/* headings clip to img  */
 h2{
    font-size: 6.0em;
    text-transform: uppercase;
    font-family: 'yomogi';
    background:url(/Assets/heading.gif);
    background-size: cover;
    font-weight: bolder;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  h3{
    font-weight: bold;
    font-size: 1.4em;
  }
.collect li{
    list-style: none;
}
.collect p {
    font-weight: bold;
    font-size:1.2em;
}
table.shipping {
    width: 50%;
    text-align: center;
    border-collapse: collapse;
    background-color: rgb(255, 255, 255,0.7);
    border-radius: 10px;
    
  }
  table.shipping td, table.shipping th {
    padding: 14px 4px;
  }
  table.shipping tbody td {
    font-size: 16px;
    border-bottom: 1px solid #70707034 ;
  }
  table.shipping thead {
      border-bottom: 2px solid #797979;
  }
  table.shipping thead th {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
  }
  table.shipping tfoot td {
    font-size: 14px;
  }
  table.shipping tfoot .links {
    text-align: right;
  }

/* fonts */

h1{
    font-size: 3em;
    font-weight: bolder;
}

h5{
    font-size: 2em;
    font-weight: bold;
}
.collect img{
    outline:rgb(247, 202, 192) solid 2px;
    outline-offset: 3px;
    border-radius: 500px;
    width: 20vw;
    height: 20vw;
}
.trade img{
    outline:rgb(247, 202, 192) solid 2px;
    outline-offset: 3px;
    width: 20vw;
    height: 15vw;
    background-size: cover;
}
.mini_profil img{
    width: 10vw;
    border-radius: 500px;
    outline-offset: 3px;
    outline: white solid 2px;
}
.mini_profil p{
    font-weight: bold;
    text-align: center;
    font-size:1.2em;
}
.collect.container{
    justify-content: space-evenly;
}

/* scrollbanner */
.scroll-text{
    font-size: 1.2em;
    font-weight: bold;
}
/* BoxShadow */
.box_shadow{
    -webkit-box-shadow: 5px 4px 4px 0px rgba(0,0,0,0.21); 
    box-shadow: 5px 4px 4px 0px rgba(0,0,0,0.21);
}
/* Background */
.background{
    width: 100vw;
    min-height: 100vh;
    height: auto;
    background-image: 
    linear-gradient(170deg,rgb(247, 202, 192,0.7),#92a8d0e6)
    ,url("/Assets/bg.jpg");
 
}
.spacer{
    margin-top: 25px;
}
/* Buttons */
.button_main {
    outline: 1px solid rgb(255, 255, 255);
    outline-offset:   1px;
    color: rgb(252, 252, 252);
    font-size: 1em;
    font-weight: bold;
    width: 200px;
    height: 26px;
    text-align: center;
    border: 0px;
    border-radius: 30px;
    background-color:	#92a8d1
}
.button_secondary {
    outline: 1px solid rgb(255, 255, 255);
    outline-offset:   1px;
    color: rgb(252, 252, 252);
    font-size: 0.8em;
    font-weight: bold;
    width: 160px;
    height: 20px;
    text-align: center;
    border: 0px;
    border-radius: 30px;
    background-color:	#d1929f
}
.button_tertiary {
    display: block;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset:   1px;
    color: rgb(252, 252, 252);
    font-size: 0.8em;
    font-weight: bold;
    height: 20px;
    width:fit-content;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    border: 0px;
    border-radius: 30px;
    background-color:	#d1929f
}
.button_main:hover{
    background-color: #7990BD;
    color: white;
}
.button_secondary:hover{
    background-color: #d3778a;
    color: white;
}
.button_tertiary:hover{
    background-color: #d3778a;
    color: white;
}

/* Items */

.profil_img{
    background-color: #7990BD;
    width: 300px;
    height: 300px;
    border-radius: 300px;
    outline: 5px solid rgb(255, 255, 255);
    outline-offset:   5px;
    margin-top: 20px;
    margin-right: 20px;
    
}

.accordion-items{
    font-size: 1.0em;
    width: 70vw;
    margin-bottom: 5px;
    
}
.img-box{
    width: 50;
}
.text-box-w2{
    width: 60vw;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 16px;
}
.text-box-w1{
    width: 50vw;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 16px;
    justify-content: space-around;
}
/* card */
.card{
    width: 80vw;
    background-color:rgb(255,255,255,0.7) ;
    border-radius: 10px;
 
}
.card img{
    height: 350px;
    object-fit: cover;
    

}
.card-title{
    margin-bottom: 2px;
    font-size: 1.5em;
}
.card-text{
    margin-left: 0px;
    margin-bottom: 2px;
}

/* Flexbox */

.container {
    margin-top: 10px;
    display: flex; /* or inline-flex */
    justify-content: center;
    gap: 20px;
  }
.container_row {
    display: flex; /* or inline-flex */
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .container_switch{
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  /* accordion */
  .accordion:after {
    content: '✿'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "❀"; /* Unicode character for "minus" sign (-) */
  }
  .accordion {
    border-radius: 10px 10px 10px 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: rgba(121, 144, 189, 0.75); 
  }
  .active.accordion{
    border-radius: 10px 10px 0px 0px;
  }
  
  .panel {
    background-color:rgb(255,255,255,0.7) ;
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
  }

  .ul-nondeko li{
    list-style: none;

  }


  @media screen and ( max-width: 800px) {
    body{
        font-size: 0.8rem;
    }
    .allign-top{
        align-items: flex-start;
    }
    .trade img{
        outline:rgb(247, 202, 192) solid 2px;
        outline-offset: 3px;
        width: 40vw;
        height: 30vw;
        background-size: cover;
        align-items: center;
    }
    .collect img{
        border-radius: 200px;
        width: 10vh;
        height: 10vh;
    }
    table.shipping {
        width: 95%;
        text-align: center;
        border-collapse: collapse;
        background-color: rgb(255, 255, 255,0.7);
        border-radius: 10px;
        
      }
      table.shipping tbody td {
        font-size: 13px;
        border-bottom: 1px solid #70707034 ;
      }
      .text-box-w1{
        width: 95vw;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        padding-left: 0px;;
    }
    .text-box-w2{
        justify-content: center;
        width: 95vw;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        padding-left: 0px;;
    }
    .spacer{
        margin-top: 15px;
    }
    .spacer-bt{
        margin-bottom: 15px;
    }
    .button_tertiary {
        display: block;
        outline: 1px solid rgb(255, 255, 255);
        outline-offset:   1px;
        color: rgb(252, 252, 252);
        font-size: 0.8em;
        font-weight: bold;
        height: 16px;
        width:fit-content;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
        border: 0px;
        border-radius: 30px;
        background-color:	#d1929f
    }
    .button_main {
        outline: 1px solid rgb(255, 255, 255);
        outline-offset:   1px;
        color: rgb(252, 252, 252);
        font-weight: bold;
        width: 25vw;
        height: 18px;
        text-align: center;
        border: 0px;
        border-radius: 30px;
        background-color:	#92a8d1;
        text-align: center;
        margin-bottom: 10px;
    }
    .button_secondary {
        outline: 1px solid rgb(255, 255, 255);
        outline-offset:   1px;
        color: rgb(252, 252, 252);
        font-weight: bold;
        width: 18vw;
        height: 16px;
        text-align: center;
        border: 0px;
        border-radius: 30px;
        background-color:	#d1929f
    }
    .profil_img{
        background-color: #7990BD;
        width: 24vw;
        height: auto;
        border-radius: 300px;
        outline: 5px solid rgb(255, 255, 255);
        outline-offset:   5px;
        margin-top: 20px;
        margin-right: 0px;
        margin-left: 5px;        
    }
    .container {
        display: flex; /* or inline-flex */
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 10px;
    }
    .container_row {
        display: flex; /* or inline-flex */
        justify-content: center;
        flex-direction: column;
    }    
    .container_switch{s
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
      }  
    .card{
        width: 80vw;
        background-color:rgb(255,255,255,0.7) ;
    }
    .card img{
        height: 150px;
        object-fit: cover;

    
    }
    h1{
        font-size: 2.2em;
    }
    h2{
        font-size: 3.2em;
    }

    
  }
