/* Style for the body */
body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container for the quote machine */
.container-fluid {
    text-align: center;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 20px;
}

/* Style for the quote display box */
#box {
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Quote text */
#message {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Buttons */
button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Primary button (Get Quote) */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

/* Info button (Tweet) */
.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

/* Add some custom styles for the Tweet button */
.btn-info i {
    margin-right: 5px;
}

/* Make the buttons look more attractive */
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
/* Navbar background and shadow */
.navbar {
    background-color: #007bff; /* Blue background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1rem;
}

/* Navbar brand */
.navbar-brand {
    color: #fff; /* White text */
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover effect on navbar brand */
.navbar-brand:hover {
    color: #f8f9fa; /* Lighter white on hover */
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease;
}

/* Hover effect on navbar links */
.navbar-nav .nav-link:hover {
    color: #d4d4d4; /* Light gray on hover */
}
