/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Centering the utility page */
body {
    background-color: black; /* Background is completely black */
    color: white; /* Text is white */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container styling */
.utility-page {
    background: rgba(255, 255, 255, 0.1); /* Subtle transparent box */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

/* Heading */
.utility-page h1 {
    font-size: 26px;
    color: #004aad;
    margin-bottom: 10px;
}

/* Paragraph */
.utility-page p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button Styling */
.home-button {
    text-decoration: none;
    color: white;
    background-color: #004aad;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
}

.home-button:hover {
    background-color: #003580;
}
