@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');

body{
    background: #090909;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
}

#video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    filter: blur(14px) brightness(0.6);
}

.top{
    height: calc(100vh - 100px)
}

.navbar{
    display: flex;
    position: fixed;
    top: 0;
    width: calc(100vw - 50px);
    justify-content: space-between;
    background-color: #0909099f;
    min-height: 45px;
    margin: 25px;
    padding: 4px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #000000a0;
}

.content{
    background: rgb(12, 12, 12);
}

.buttonContainer{
    margin-top: 30px;
}

.logoImage{
    height:50px;
    margin-bottom: -5px;
}

.btnContainer{
    min-height: 50px;
}

.smallIcon{
    margin-right: 6px;
}

.button{
    background: linear-gradient(45deg, #015EEA, #00BAF9);
    border: 0;
    margin: 7px;
    padding: 6px;
    display: inline-block;
    text-decoration: none;
    color: white;
    width: 140px;
    border-radius: 9px;
    text-shadow: 0 0 5px #00000090;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 18px;
    text-align: center;
}

.footer{
    margin-top: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
    background-color: black;
}

.titleContainer{
    transform: translateY(calc(50vh - 130px));
    filter: drop-shadow(0 0 20px black);
}

.logoContainer{
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button:hover{
    transform: scale(1.2) rotate(2deg);
}

.logoContainer:hover{
    transform: scale(1.6) rotate(360deg);
    filter: drop-shadow(0 0 55px #000000ff);
}

.title{
    background: linear-gradient(0deg, #00BAF9, #015EEA);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 80px;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    color: #00BAF9;
}

.subTitle{
    background: linear-gradient(0deg, #015EEA, #00BAF9);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 30px;
    font-weight: 600;
    margin-top: 18px;
    -webkit-text-fill-color: transparent;
}

.infoSectionTitle{
    scroll-behavior: smooth;
    background: linear-gradient(0deg, #505050, white);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 60px;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    color: #00BAF9;
}

.featuresGrid{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    width: 850px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: white;

}

.featureIconContainer{
    display: inline-block;
    font-size: 25px;
    border: solid 2px #404040;
    border-radius: 50%;
    padding: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: 8px;
}

.featureTitle{
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}

.featureText{
    color: #a0a0a0;
    font-size: 15px;
    margin: 8px;
    margin-top: -4px;
}

.mediaContainer{
    margin-top: 50px;
    max-width: 1200px;
}

.ytVideo{
    border: solid 1px black;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 0 10px #00000090;
}

@media (max-width: 900px) {
    .featuresGrid{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;

    }
}

.feature{
    width: 260px;
    min-height: 130px;
    background: #080808;
    border: solid 1px rgb(32, 32, 32);
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 0 10px #00000090;
}

.clientPlan{
    width: 320px;
    background: #080808;
    border: solid 1px rgb(32, 32, 32);
    border-radius: 15px;
    margin: 10px;
    display: inline-block;
    box-shadow: 0 0 10px #00000090;
    color: white;
}

.marginedTitle{
    margin-top: 50px;
    margin-bottom: 50px;
}

.freeText{
    background: linear-gradient(0deg, #505050, white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premText{
    background: linear-gradient(0deg, #015EEA, #00BAF9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.versionText{
    font-size: 12px;
    color: gray;
}

.planFeature{
    font-size: 17px;
    padding: 8px;
    color: #E0E0E0;
    border-bottom: solid 1px rgb(32, 32, 32);
}

.bottomPlanFeature{
    border-bottom: none;
}

.checkIcon{
    color: #4a92ff;
}

.crossIcon{
    color: #676767;
}