@font-face {
    font-family: "Druzhok";
    src: url("fonts/Druzhok.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: black;
    color: white;
    font-family: "Druzhok", sans-serif;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
}

.title {
    font-size: 48px;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 60px;
}

.gallery {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 30%;
    min-width: 250px;
    border-radius: 6px;
}