/* font-family: 'EB Garamond', serif;
font-family: 'Roboto Mono', monospace; */

*{
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
    /* text-decoration: none; */
}

body{
    font-family: 'EB Garamond', serif;
}
.logo > h1{
    color: rgb(26, 255, 0);
    font-family: 'Tillana';
}
.nav-bar{
    background-color: black;
    position: fixed;
    display: inline-flex;
    width: 100%;
    height: 50px;
    justify-content:space-between;
    align-items: center;
    color: white;
    
}

.nav > a{
    padding-left: 50px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.nav > a:hover, 
.contact > a:hover{
    color: rgb(61, 247, 4);
    text-transform: uppercase;
    
}

.contact > a{
    color: white;
    font-size: x-large;
    padding-left: 20px;
    cursor: pointer;
}

/* header end */
.img-tag{
    background-image: url(image/pexels-karolina-.jpg);
    width: 100%; 
    height: 500px;
    background-size: cover;
}

.img-tag >h1{
    padding:15%;
    text-align: center;
    color: rgb(26, 255, 0);
    font-size: 100px;
    text-shadow: 2px 4px 8px black;
    font-family: 'Lily Script One';
}

#abouts{
    background-color: black;
    width: 100%;
    height: 400px;
    display: inline-flex; 
    color: white;
}
#about{
    margin: 100px;
}

#about >h4{
    color: rgb(26, 255, 0);
    font-family: 'Tillana';
    text-shadow: 2px 2px 2px rgb(26, 255, 0);
    font-size: 25px;
}

#about >p{
    text-indent: 10%;    
    padding-top: 10px;
    text-align: justify;
}

#product{
    width: 940px;
    height: 1000px;
    margin-left: 100px;
    margin-right: 100px;
    padding-left: 20px;
}
#product >h4{
    color: rgb(26, 255, 0);
    font-family: 'Courier New';
    text-shadow: 3px 3px 5px rgb(11, 11, 11);
    font-size: 40px;
    text-align: center;
    padding: 2%;
}

.product a{
    text-decoration: none;
    color:rgb(19, 19, 19);
    background-color: rgba(92, 92, 92, 0.21);
    border-radius: 10px;
}

.product a:hover{
    border:2px groove black;
    border-radius: 10px;
}

.product{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    gap: 20px;
    text-align:center;
}
.product .rating{
    color:goldenrod;
}
#contact{
    background-color: black;
    width: 100%;
    height: 400px;
}
#contact h4{
    color: rgb(26, 255, 0);
    font-size:30px;
    text-align: center;
    
}
.item1{
    display: inline-flex;
    padding-top: 2%;
    padding-left: 20px;
    gap: 100px;
}

.contact-me{
    color: white;    
}

#name{
    width: 250px;
    padding: 3px 5px;
    outline: none;
    border-radius: 5px;
}

#email{
    width: 250px;
    padding: 3px 5px;
    outline: none;
    border-radius: 5px;    
}
#message{
    border-radius: 5px;
    outline: none;
    padding: 3px 5px;
    min-width: 300px;
    min-height: 150px;
    max-width: 300px;
    max-height: 150px;
    font-family: serif;
    font-size: 15px;    
}

.contact-me #btn{
    color: white;
    background-color: red;
    border: none;
    width: 60px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-me #btn:hover{
    background-color: green;
}

#contact span{
    top: 20px;
    float: right;
    color: white;
}

