body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

h3 {
    color: white;
    font-size: 3rem;
    text-align: center;
    z-index: 1;
}