
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333;
    background-color: #f5f5f5;
}
/* Noise overlay */
body::after {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../img/noise.jpg');
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 9999;
    animation: noiseMove 0.2s steps(2) infinite;
}

@keyframes noiseMove {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-5%, 5%);
    }
    50% {
        transform: translate(5%, -5%);
    }
    75% {
        transform: translate(-5%, -5%);
    }
    100% {
        transform: translate(5%, 5%);
    }
}


.btn {
    background: #171717;
    color: white;
    padding: 8px 22px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
    display: inline-block;
}
.btn:hover {
    color: #171717;
    background: white;
    transform: scale(1.05);
}