@import url('variables.css');

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #F5F7FA;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}

img{
    max-width: 100%;
    display: block;
}

.container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
}