@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin:0;
}
html,body{
    overflow-x: hidden;
}
img{
    width:100%;
}
a{
    text-decoration: none;
}
.background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
main{
    min-height: 100vh;
    padding: 100px 0;
}
.container{
    max-width:1440px;
    padding:0 10px;
    margin:0 auto;
}
.main_logo{
    max-width:268px;
    margin:0 auto 60px;
}
h1{
    color: #000;
    font-family: Ermilov;
    font-size: 128px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin:0 auto 100px;
}
.links{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    margin-bottom:56px;
}
.links a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 250px;
    background: #1B1B1B;
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 24px 48px;
    transition: all 0.3s ease;
}
.links svg path{
    transition: all 0.3s ease;
}
.links a:hover {
    background-color: #FFC501;
    color: #000;
}
.links a:hover svg path {
    fill: #000 !important;
}
.links a:active {
    background-color: #fff;
    color: #000;
}
.social_media{
    display: flex;
    justify-content: center;
    gap: 48px;
}
.social_media a{
    background-color: #000;
    display: flex;
    width: 82px;
    max-width: 82px;
    height:82px;
    max-height: 82px;
    padding: 0px 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.social_media a:hover{
    background-color: #fff;
}
.social_media a:hover path{
    fill:#000 !important;
}
@keyframes backgroundAnimation {
    0% {
        background:
        linear-gradient(0deg, rgba(255, 197, 1, 0.47) 0%, rgba(255, 197, 1, 0.47) 100%),
        url('img/animation1.png') center center / cover no-repeat,
        #1B1B1B;
        background-blend-mode: color, hard-light, normal;
    }

    100%{
        background:
        linear-gradient(0deg, rgba(255, 197, 1, 0.47) 0%, rgba(255, 197, 1, 0.47) 100%),
        url('img/animation2.png') center center / cover no-repeat,
        #1B1B1B;
        background-blend-mode: color, hard-light, normal;
    }
  }
  @media(max-width:1440px){
    main{
        padding: 86px 0;
    }
    .main_logo{
        max-width:192px;
    }
    h1{
        color: #000;
        text-align: center;
        font-family: Ermilov;
        font-size: 96px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 64px;
    }
    .links{
        grid-template-columns: repeat(2,1fr);
        gap:16px;
        margin-bottom: 40px;
    }
    .links a{
        color: #FFF;
        font-family: Montserrat;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
        box-sizing: border-box;
    }
    .links a:last-child:nth-child(odd) {
        grid-column: 1 / 3;

        justify-self: center;
    }
  }
  @media(max-width:992px){
    h1{
        font-size: 64px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 64px */
    }
  }
  @media(max-width:768px){
    .links{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap:8px;
        margin-bottom: 30px;
    }
    .links a:last-child:nth-child(odd){
        grid-column: 1 / -1 ;
        width: 100%;
    }
    .social_media{
        gap:8px;
    }
  }
