@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    justify-content: center;
    align-items: center;

    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.container h1 {
    color: #b7b8c4;
    font-size: 40px;
}

.container .bg {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background-image: url('./ngo.png');
    background-position: center;
    background-size: cover;
    filter: blur(3px) brightness(0.5);
    z-index: -100;
}