@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    font-family: 'Arimo', sans-serif;
}

body {
    background-color: #24252A;
    margin: 0;
    padding: 0;
    display: block;
    margin-bottom: -200px;
}

.bgimage {

    /* Blur effect */
    filter: blur(8px);
    -webkit-filter: blur(8px);

    position: relative;
    top: -100px;
    
    height: 100%;
    width: 100%;

    background-repeat: no-repeat;
    background-size: 50% 100%;

    z-index: -1;
    display: block;
}

.bgtext {
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);

    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.bodybackground {
    position: relative;
    left: 0;
    right: 0;
    top: 0px;
    margin-top: -100px;
    min-width: 100%;
    min-height: 400px;
    background-color: white;
    z-index: -1;
    display: block;
}

.bodytext {
    position: relative;
    top: -480px;
    text-align: center;
}

.bodytext h2 {
    position: relative;
    top: -200px;
    font-size: 48px;
}

.bodytext p {
    position: relative;
    top: -150px;
    font-size: 24px;
}