/* Обычный */
@font-face {
	font-family: 'Bluecurve'; 
	src: url(../fonts/Bluecurve-Regular.ttf); 
}
/* Обычный */
@font-face {
	font-family: 'TikTokSans'; 
	src: url(../fonts/TikTokSans.ttf); 
}
@font-face {
	font-family: 'boozy'; 
	src: url(../fonts/BOOZY.ttf); 
}
@font-face {
	font-family: 'alabama'; 
	src: url(../fonts/ALABAMA_REGULAR.ttf); 
}
@font-face {
	font-family: 'font_2'; 
	src: url(../fonts/DKCinnabarBrush-Regular.ttf); 
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    
}

main{
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 10px auto;
}
footer{
    width: 100%;
    height: max-content;
    min-height: 300px;
    background: #464646;
    color: #fff;
    font-weight: 900;
    margin-top: 100px;
    padding: 10px;
}
.footer__inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px 200px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer_col{
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 20px;
}
.footer_col_title{
    width: 100%;
    text-align: center;
    font-family: 'boozy';
    font-size: 24px;
    color: orange;
}
.footer_link{
    color:#ffc95e;
    text-decoration: none;
    cursor: pointer;
}