* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #acb6e5, #86fde8);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    color: #100f0d;
}

h1 {
    font-size: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.row {
    padding: 30px;
}

.container {
    max-width: 100%;
}

.q-button {
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #9796f0, #fbc7d4);
    padding: 30px 0;
    color: #191717;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.q-button:hover {
    background: rgba(131, 146, 246, 0.814);
    color: #ffffff;
    transform: scale(1.03);
}