*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #C1FF03;
    --color-primary-hover: #E7F9B1;
    --color-white: #fff;
    --color-black: #050505;
  
    --font-title: "Lexend", sans-serif;
    --font-text: "Source Code Pro", monospace;
  
    /* fonts-size */
    --font-size-h1: 90px;
    --font-size-h2: 64px;
    --font-size-h3: 40px;
    --font-size-subtitle: 40px;
  
    /* line-height */
    --line-title: 1.1;
    --line-btn: 1;

    /* height */
    --section-height: 1080px;
}
body{
    background: var(--color-black);
}
a{
    text-decoration: none;
    display: block;
}

section{
    min-height: var(--section-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/img/Noise.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
h1{
    font-family: var(--font-title);
    color: var(--color-white);
    font-weight: 500;
    line-height: var(--line-title);
    font-size: var(--font-size-h1); 
}
h2{
    font-family: var(--font-title);
    color: var(--color-white);
    font-weight: 500;
    line-height: var(--line-title);
    font-size: var(--font-size-h2);
}
.h3{
    font-family: var(--font-title);
    color: var(--color-black);
    font-weight: 300;
    line-height: var(--line-title);
    font-size: var(--font-size-h3);
}
p{
    font-family: var(--font-title);
}
h2 span, h1 span{
    color: var(--color-primary);
}
.container{
    max-width: 1680px;
    width: 100%;
}
.btn_main{
    padding: 24px 160px;
    background: var(--color-primary);
    border-radius: 4px;
    font-size: 32px;
    color: var(--color-black);
    line-height: var(--line-btn);
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-text);
    border: 0px;
    transition: .3s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn_main:hover{
    background: var(--color-primary-hover);
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}



/* animation */

.animate-fadeIn{
  opacity: 0;
}
.animate.active .animate-fadeIn {
  opacity: 1;
}
.animate-slideFromBottom {
  top: 50px;
}
.animate.active .animate-slideFromBottom {
  top: 0;
}


.animate-delay-02{
    transition: all 1s 0.2s ease;
}
.animate-delay-04{
    transition: all 1s 0.4s ease;
}
.animate-delay-06{
    transition: all 1s 0.6s ease;
}
  