body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    background-color: black;
}

main {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    width: 75%;
    margin: 0 auto;   
    color: #F3F4F6;
    justify-self: center;
    display: flex;
    flex-direction: column; /* top to bottom */
    margin-bottom: 100px;
    top: 25%;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    main {
        top: 50px;
    }
}

.background {
    position: fixed;
    inset: 0;

    background: url("https://assets.jonasthecoderx.com/images/background.png") center/cover no-repeat;

    filter: blur(8px) brightness(0.75);
    transform: scale(1.1); /* Prevent blur edges from showing */
    z-index: -1;
}

.notice {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 25%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #F3F4F6;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
}