/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500&display=swap');

/* Global styles */
body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;  /* or any sans-serif */
    margin: 0;
    padding: 20px;
}

/* Title styling */
h1, .title {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Button styling */
button, .btn {
    background-color: #fe5000;
    color: white;
    font-family: 'Roboto', sans-serif;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

button.mini, .btn.mini {
    padding: 8px 15px;
    font-size: 14px;
}

button:active {
    opacity: 0.8;
}