* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}
@media (min-width: 480px) {
    body {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 1.5rem;
    }
    .nav-list {
        font-size: 1rem;
        width: 20%;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 1.8rem;
    }
}

@media (min-width: 1280px) {
    body {
        font-size: 2rem;
    }
    
}

.top{ 
    width: 100%;
    height: 10vh
}
header {
    height: 10vh;
    width: 100%;
    background: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1000;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
    padding-right: 2vw;
    font-size: 2rem;
    height: 10vh;
}
.navli{
    background: orange;
    border-radius: 200px;
    padding: 10px;
}
a{
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
img {
    max-width: 100%;
    height: 100%;
    margin-right: 400px;
    display: inline-block;
}
nav {
    color: #fff;
    padding: 10px 0;
}
h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #000;
}
#video {
    width: 100%;
    height: 50vh;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    font-size: 3rem;
}
label {
    margin-bottom: 10px;
    color: #000;
}
#email {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#submit {
    padding: 10px 20px;
    background-color: #F27C32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    width: 100%;
    font-size: 1.5rem;
}
.contact{ 
    color: #000;
}
#pricing {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
    font-size: 2rem;
}
.buy-button {
    background-color: #F27C32;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 20px;
}
#features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 1.5rem;
    padding-bottom: 4rem;
    border-bottom: 20px solid #ccc;
}
#features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 80%;
}
#about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 1.5rem;
}