.section-divider {
    width: 80%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 30px auto;
    border-radius: 5px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    flex-wrap: wrap;
}

.outlined-button {
    text-decoration: none;
    padding: 10x 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.25);
    width: 115px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Courier New", Courier, monospace;
}

    .outlined-button:hover {
        text-decoration: none;
        color: white;
        border-color: white;
        transform: scale(1.05);
    }