@import url('https://fonts.googleapis.com/css2?family=League+Spartan&family=Nunito&family=Nunito+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

* {
padding: 0;
margin: 0;
overflow-x: hidden;
}
body {
    background-color: #111111;
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
a:focus, a:visited, a:active {
    outline: none; 
    -webkit-tap-highlight-color: transparent;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
li {
   width: 300px;
   color: white;
   font-size: 18px;
   margin: 20px 0px;
   padding: 22px;
   border: 1px solid white;
   border-radius: 50px;
   text-align: center;
   transition: 0.6s;
}
li:hover {
  color: #000000;
  background-color: white;
}
a {
text-decoration-line: none;
}
#text {
    font-size: 26px;
    color: white;
    background-color: #111111;
    text-align: center;
}
.name {
    font-size: 28px;
    font-family: 'DM Serif Display', serif;
    color: white;
    text-align: center;
    margin: 20px 0px;
    font-weight: 100;
}
#work {
    font-size: 14px;
    color: rgb(172, 172, 172);
    text-align: center;
    margin-bottom: 35px;
    font-weight: bold;
}
section {
    width: 100%;
    background-color: #000000;
    margin-top: 180px;
    margin-bottom: 80px;
    border-radius: 50px;
    padding-bottom: 100px;
    z-index: 5;
}
.hero{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
.heroimg{
    width: 60%;
    border-radius: 50%;
    margin-top: 30px;
}
.hero button {
    width: 300px;
    color: black;
    background-color: white;
    border: 1px solid white;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}
.profilebg {
 width: 100%;
 position: fixed;
 top: 0;
 z-index: -1;
}
.profilebg img {
 width: 100%;
}
.site {
    width: 100%;
    background-color: #111111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
    padding: 20px 0px;
}
.sitesec {
    width: 300px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    
}
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.socialsec {
    width: 300px;
    color: white;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.socialsec:hover {
    background-color: white;
    color: #000000;
}
i {
    transition: 0.1s ease-in-out;
}
.socialsec:hover i {
   transform: rotate(180deg);
   transition: 0.1s ease-in-out;
}
i {
padding-top: 1px;
overflow: hidden;
}
iframe {
width: 300px;
height: 400px;
border-radius: 30px;
}
.secname {
width: 300px;
color: #bbbbbb;
font-size: 18px;
}
hr {
border: 1px solid #222222;
width: 100%;
margin: 50px 0px 30px 0px;
}
.companysec {
width: 300px;
background-color: #111111;
display: flex;
justify-content: start;
flex-direction: column;
border-radius: 30px;
}
.shop {
display: flex;
justify-content: space-evenly;
flex-direction: row;
overflow: hidden;
padding: 20px 0px;
}
#product {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 10px 0;
overflow: hidden;
}
#product img {
width: 70%;
}
#product video {
width: 70%;
border-radius: 50%;
}
#product p {
font-size: 14px;
color: white;
margin: 10px 0px;
}
#product button {
color: white;
font-size: 10px;
padding: 10px;
background-color: transparent;
border: 1px solid white;
border-radius: 30px;
transition: all 0.3s ease-in-out;
}
#product button:hover {
color: #000000;
background-color: #ffffff;
}