*{
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    background-color: beige;
}

.bg{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;

    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-image: url(../images/bg_2.png);
        background-repeat: repeat;
        /* filter: blur(5px); */
    }
}

img{
    display: block;
    width: 800px;
    max-width: 100%;
    margin: auto;
}