@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-image: url('images/background.jpeg');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(122, 200, 243, 0.407); /* Overlay */
    z-index: -1;
}

main {
    max-width: 300px;
    width: 90%;
    padding: 15px 18px;
    background-color: rgba(236, 137, 79, 0.578);
    border-radius: 0px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(145, 145, 145, 0.3);
    text-align: center;
}

h1 {
    margin: 0;
    padding: 0;
    font: 400 25px/1.8 "Lato", sans-serif;
    color: rgb(255, 255, 255);
    letter-spacing: 10px;
    text-transform: uppercase;
}