
  
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
*{
    padding: 0;
    margin: 0; 
    font-family: 'Quicksand', sans-serif;
}
:root {
  --background: hsl(240, 80%, 10%);
}
body{
  /* background-color: #f2f2f2; */
  background: 
  radial-gradient(
    60vmax 60vmax at 0% 0%, 
    hsla(240, 100%, 2%, 0.9) 0%, 
    hsla(240, 100%, 2%, 0) 95%),
  radial-gradient(
    80vmax 50vmax at 110% -10%, 
    hsla(175, 100%, 60%, 0.9) 0%, 
    hsla(200, 100%, 50%, 0.5) 50%, 
    hsla(240, 100%, 50%, 0) 95%), 
  radial-gradient(
    90vmax 50vmax at 50vmax 50vmax, 
    hsla(260, 100%, 60%, 0.9) 0%, 
    hsla(240, 100%, 60%, 0) 95%)
  var(--background);

}

*,html{
  scroll-behavior: smooth;
  }
  
  *, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
  :root{
  scrollbar-width: thin !important;
  --secondary:#202124;
  --gray:#b8bca7;
  --blue:#061221;
  }
  ::-webkit-scrollbar {
  height: 12px;
  width: 20px;
  }
  ::-webkit-scrollbar-thumb {
    
  background:  repeating-linear-gradient( 135deg, rgb(236, 236, 236), rgb(221, 221, 221) 5px, rgb(201, 201, 201) 5px, rgb(228, 228, 228) 1px, rgb(224, 224, 224) 10px, rgb(53, 103, 126) 15px, rgb(214, 214, 214) 15px, rgb(224, 224, 224) 10px );
  -webkit-border-radius:  5px;
  }
  ::-webkit-scrollbar-corner {
  background: #000;
  }
  
.topnav {
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}


.topnav a.active {
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.coons{
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f2f2f2f3;
  margin: 3%;
  padding: 8%;
}

.coons>div{
  margin: 10px;
  border-radius: 10px;
 
  padding: 16%;
}
.container{
    
   text-align: center;   
}
.container h1{
    font-size: 46px;
    margin-bottom: 20px;
    white-space: nowrap;
}
.container p {
    font-size: 20px;
    line-height: 37px;
}
.container h1::selection{
   background:#00a8ff ;   color:#262626 ;
}
.container p::selection{
      color:#262626 ;
 }

 * {
    box-sizing: border-box;
  }
  
 .row {
   
    background-color: #f2f2f2;
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    margin: 0 -16px;
  }
  
  .col-25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
  }
  
  .col-50 {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
  }
  
  .col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;
  }
  
  .col-25,
  .col-50,
  .col-75 {
    padding: 0 16px;
  }
  
  .container {
    padding: 5px 20px 15px 20px;
  }
  
  input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
  
  label {
    margin-bottom: 10px;
    display: block;
  }
  
  .icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
  }
  
  .btn {
    background-color: #25599c;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
  }
  
  .btn:hover {
    background-color: #45a049;
  }
  
  a {
    color: #2196F3;
  }
  
  hr {
    border: 1px solid lightgrey;
  }
  
  span.price {
    float: right;
    color: grey;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
  @media (max-width: 800px) {
    .row {
      flex-direction: column-reverse;
    }
    .col-25 {
      margin-bottom: 20px;
    }
  }
 