/* Reset and box model */
* {
    box-sizing: content-box;
    margin: 20px;
    padding: 50px;
}

/* Body styling */
body {
    font-family: sans-serif;
    /* fallback font for general text */
    background-image: url('https://cdn.pixabay.com/photo/2025/04/02/18/48/background-9509852_640.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #191ba7;
}

/* Heading with Ribeye font */
h1 {
    font-family: "Ribeye", serif;
    color: #360ceefd;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgb(7, 0, 0);
    letter-spacing: 1px;
}

/* Paragraph styling */
p {
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
}

/* Button styling */
button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #4cae4c;
    border-radius: 5px;
    background-color: #b0ec08;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0f2fe4;
}