.standard {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 2rem;
}

.standard h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.standard .brand {
    color: #007bff;
}

.standard p {
    font: Verdana;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.button {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
    line-height: normal;

    display: inline-block;
    padding: 0.75rem 1.75rem;
    margin: 1rem;
    margin-bottom: 2rem;
    width: 150px;

    background-color: #007bff;
    color: white;
    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;

    border-radius: 6px;
    cursor: pointer;

    transition: background-color 0.2s ease, transform 0.1s ease;
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.button:active {
    transform: translateY(0);
}

.button:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.tool-grid .button {
    width: 80%;
    text-align: center;
}

