/* Reset default spacing */
body {
    margin: 0;
    height: 100vh;
    font-family: Arial, sans-serif;

    /* Background image */
    background-image: url("https://hooring.io/hooringlogo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Center content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text styling */
.content {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    
    /* Position control - change this value to adjust vertical position */
    /* Positive values move DOWN, negative values move UP */
    margin-top: 400px;
}

/* Paragraph with narrower margins */
.content p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
