@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
    background-color: #141625;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    
}
.header img {
   padding-top: 2rem;
   padding-bottom: 2rem;
}
    
.header img {
    width: 300px;
    max-width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content img {
    width: 100%;
    max-width: 600px; /* или 100% если хочешь адаптив */
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 5px rgba(0, 140, 255, 0.6))
  drop-shadow(0 0 20px rgba(0, 140, 255, 0.4));


}

.title {
    font-size: 5rem;
    margin-bottom: 20px;
 
}

@media (max-width: 530px) {
    .title {
        font-size: 3rem;
    }
    
}

.sub-title {
    font-size: 1.5rem;
    color: #919191;
    margin-bottom: 20px;
}
@media (max-width: 530px) {
    .sub-title {
        font-size: 1rem;
    }
    
}

.footer {
padding-top: 20px;
   margin-bottom: 2rem;

}
.social-links  {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.social-links li a img {
    max-width: 36px;
}
