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

html,body{
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    background: var(--light-bg);
}
.main{
    width: 1300px;
    max-width: calc(100% - 2em);
    margin: 0 auto;
}
.container{
    width: 100%;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
}