html {
    background-color: black; 
}

body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/IMG_8243.jpeg) center/cover no-repeat;
    filter: blur(6px);
    z-index: -1;
}

.box {
    z-index: 1;
    /* background-color: #1034a6; */
    background-color: #378ff1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    height: 55vh;
    width: 70vh;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

h1, p {
    color: black;
    /* background-color: #1034a6; */
}

h4 {
    color: white;
    font-size: 1.9em;
    font-family: 'Share Tech Mono', monospace;
    /* background-color: #1034a6; */
}

h1 {
    font-size: 3.3em;
    font-family: 'Orbitron', sans-serif;
}

p {
    font-size: 1.5em;
    font-family: 'Share Tech Mono', monospace;
}

@media (max-width: 480px) {

    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/9Z0A0390.jpeg) center/cover no-repeat;
        filter: blur(3px);
        z-index: -1;
    }

    body {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
    }

    .box {
        padding: 25px 20px;
        background-color: rgb(55, 143, 241, 0.8);
    }

    p {
        font-size: 1.1em;
        font-family: 'Share Tech Mono', monospace;
        color: white;
        font-weight: 700;
    }

    h4 {
        font-size: 1.5em;
        font-weight: 900;
    }
}


@media (min-width: 481px) and (max-width: 1024px) {
    body::before {
        filter: blur(5px);
    }
    
    .box {
        height: 50vh;
        width: 65vh;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.8em;
    }
    
    h4 {
        font-size: 1.6em;
    }
    
    p {
        font-size: 1.2em;
    }
}