*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    text-decoration: none;
    font-family: ClashDisplay;
    transition: 0.2s ease;

    scroll-behavior: smooth;
}

:root{
    --primary-color: rgb(8, 127, 91);
    --primary-color-light: rgb(9, 146, 104);
    --shadow: 0 1px 6px 0 rgba(0,0,0,.15);
}


/* Fonts */
@font-face {
    font-family: Poppins;
    src: url(../../assets/fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: ClashDisplay;
    src: url(../../assets/fonts/ClashDisplay-Variable.ttf);
}

.center-container{
    max-width: 1200px;
    margin: 0 auto;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Primary */
.btn-primary{
    background-color: var(--primary-color);
    color: white;
    height: 38px;
    padding: 0 10px 0 18px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.15s ease;
    width: fit-content;
}
.btn-primary:hover{
    background-color: var(--primary-color-light);
}
.btn-primary:hover .btn-primary-icon img{
    transform: translate(2px, -2px);
}
.btn-primary span{
    font-size: 15px;
    font-weight: 500;
    text-wrap: nowrap;
}
.btn-primary-icon{
    background-color: #fff;
    border-radius: 8px;
    padding: 2px 8px;
}
.btn-primary-icon img{
    width: 16px;
    filter: invert(0);
    transition: 0.15s ease;
}

/* Button Secondary */
.btn-secondary{
    background-color: rgb(246, 246, 246);
    border: 1px solid rgb(241, 241, 241);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-self: center;
    text-wrap: nowrap;
}
.btn-secondary:hover,
.btn-secondary:active{
  background-color: whitesmoke;
}

/* background-image: 
linear-gradient(270deg, rgb(0, 255, 0, 0.1), 
rgba(0, 128, 0, 0.1)), 
url(../../images/cover-picture-02.jpg); */