@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-body);

    background:#071321;

    color:#fff;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{
    font-family:inherit;
    cursor:pointer;
    border:none;
    outline:none;
}

input,
textarea{
    font-family:inherit;
}

section{
    padding:var(--section) 0;
}

.container{
    width:min(100% - 40px,var(--container));
    margin:auto;
}
