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

body {
    font-family: 'Chakra Petch', sans-serif;
    background: #e8e8e8;
    background-size: 100% 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.noise::before{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    opacity: .05;  
    z-index: 1000;
    pointer-events: none;
    background: url(noise.gif) ;
}