@font-face {
    font-family: tilda;
    src: url(fonts/TildaSans-VF_TTF_Web/TildaSans-VF.ttf);
}
header{
    margin-bottom: 70px;
}

main{
    margin-bottom: 80px;
}

.container--brand{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.brand-letter-group {
    margin-bottom: 20px;
}
.brand-letter {
    font-family: tilda;
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.brand-item {
    margin-bottom: 8px;
}
.brand-link {
    font-family: tilda;
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
}
.brand-link:hover {
    color: #666;
}