@tailwind base;
@tailwind components;
@tailwind utilities;

.welcome-app-header {
    background-color: #3498db;
    box-shadow: 0 2px 4px #0000001a;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.welcome-app-header .welcome-logo {
    max-width: 90%;
    width: 400px;
    height: auto;
    margin-bottom: 10px;
}

.button-group {
    padding:1rem;
}
.welcome-button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    padding: 15px 25px;
    text-transform: uppercase;
    transition: background-color .3s ease, transform .2s ease;
    background-color: #3498db;
    color: #fff;
    margin: 1.5rem auto;
}
