
@import url("https://use.typekit.net/wib2cyg.css");

@import url('https://fonts.cdnfonts.com/css/lowball');

     
/* Ekamai:
font-family: "ekamai", sans-serif;
font-weight: 400;
font-style: normal;  */

/* lowball:
font-family: 'Lowball', sans-serif;
font-family: 'Lowball VF', sans-serif; */

/* body */
body {

    height: 250px;
  background-color:#ff9e3e;

}
/* header/logo */
header{
  padding: 15px 0;
  overflow: hidden; 
}
.main_nav{
  float: right;
  margin-top: 25px;
  margin-bottom: 35px;
}

.main_nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_nav li{
  display: inline-block;
  margin-left: 10px;
  position: relative; 
}

.main_nav a{
  text-decoration: none;
  color: black;
  font-weight: 700;
  font-family: "ekamai", sans-serif;
font-weight: 400;
font-style: normal; 
  font-size: 20px;
  padding: 10px 80px;
}
.logo img {
  width: 200px;
  height: auto;
  float: left;
   margin-top: 10px;
  margin-bottom: 30px;
}
/* h1 */
h1 {
   font-family: "ekamai", sans-serif;
font-weight: 400;
font-style: normal; 
  font-size: 50px;
   text-align: center;
   position:relative;
}
/* p */
p {
 font-family: 'Lowball', sans-serif;
font-family: 'Lowball VF', sans-serif; 
  font-size: 20px;
   text-align: center;
   position:relative;
}

/* download btn */
.btn_download {
   font-family: 'Lowball', sans-serif;
font-family: 'Lowball VF', sans-serif;
  font-size: 20px;
 display: inline-block;
  background: white;
  color: black;
  border-radius: 15px;
  text-decoration: none;
  padding: 15px 14px;
  border: 1px solid #ddd;
  margin-left: 550px;
  
}

/* product image */
.product_img img
{
   width: 400px;  
  height: auto;
  justify-content: center;
    gap: 30px;

}

/* social media */
.social_media {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social_media img {
  width: 100px;
  height: auto;
}

/* preloader */
.preloader {
    background: #ff9e3e;
width: 100%;
    height: 900px;
    z-index: 1000;
    display: flex;
	justify-content: center;
	align-items: center;
    position: fixed;
	left: 0;
	top: 0;
}

.preloader img {
    display: inline-block;
    opacity: 0.8;
    animation: pulse 0.5s alternate infinite ease-in-out;
    transform: scale(1);
}

@keyframes pulse {
    to {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.preloader.hidden {
    animation: fadeOut 5s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
